From d8335fb03273d46262b40c0dd53d94ef7e275814 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Wed, 31 Jul 2019 14:10:30 -0400 Subject: Put native file before cross file in options list I think this makes more sense by matching how build comes before host. Native builds are also more common than cross builds. --- run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'run_tests.py') diff --git a/run_tests.py b/run_tests.py index 6a4268183..7e9564397 100755 --- a/run_tests.py +++ b/run_tests.py @@ -71,11 +71,11 @@ class FakeCompilerOptions: def get_fake_options(prefix=''): import argparse opts = argparse.Namespace() + opts.native_file = [] opts.cross_file = None opts.wrap_mode = None opts.prefix = prefix opts.cmd_line_options = {} - opts.native_file = [] return opts def get_fake_env(sdir='', bdir=None, prefix='', opts=None): -- cgit v1.2.3