diff options
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/run_unittests.py b/run_unittests.py index d1c10f5..4ae1728 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -6338,11 +6338,10 @@ c = ['{0}'] testdir = os.path.join(self.unit_test_dir, '61 identity cross') env = { 'CC_FOR_BUILD': '"' + os.path.join(testdir, 'build_wrapper.py') + '"', + 'CC': '"' + os.path.join(testdir, 'host_wrapper.py') + '"', } crossfile = tempfile.NamedTemporaryFile(mode='w') - crossfile.write('''[binaries] -c = ['{0}'] -'''.format(os.path.join(testdir, 'host_wrapper.py'))) + crossfile.write('') crossfile.flush() self.meson_cross_file = crossfile.name # TODO should someday be explicit about build platform only here |