From c3640ef03648bf79a39029e851970073063b46ac Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Fri, 30 Aug 2013 23:25:09 +0300 Subject: [PATCH] The whole test suite runs cross-built with mingw and armhf. --- run_cross_test.py | 3 ++- test cases/common/30 pipeline/meson.build | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/run_cross_test.py b/run_cross_test.py index d1eb6898e..6e639cda1 100755 --- a/run_cross_test.py +++ b/run_cross_test.py @@ -31,7 +31,8 @@ test_build_dir = 'work area' install_dir = os.path.join(os.path.split(os.path.abspath(__file__))[0], 'install dir') meson_command = './meson.py' -extra_flags = ['--cross-file', 'cross/ubuntu-armhf.txt'] +#extra_flags = ['--cross-file', 'cross/ubuntu-armhf.txt'] +extra_flags = ['--cross-file', 'cross/ubuntu-mingw.txt'] ninja_command = environment.detect_ninja() if ninja_command is None: raise RuntimeError('Could not find Ninja executable.') diff --git a/test cases/common/30 pipeline/meson.build b/test cases/common/30 pipeline/meson.build index 3fb94d1b8..2f34bd410 100644 --- a/test cases/common/30 pipeline/meson.build +++ b/test cases/common/30 pipeline/meson.build @@ -1,6 +1,6 @@ project('pipeline test', 'c') -e1 = executable('srcgen', 'srcgen.c') +e1 = executable('srcgen', 'srcgen.c', native : true) gen = generator(e1, outputs : '@BASENAME@.h',