aboutsummaryrefslogtreecommitdiff
path: root/run_cross_test.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-08-24 21:33:52 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-08-24 21:33:52 +0300
commit696f72da1b60c6f255e8a96ed578683eccc6124c (patch)
tree2241b19761fd8b905748b61bd761e6660cd3641d /run_cross_test.py
parent6aa1152d72731e59011ec9c46d45ead6f519953e (diff)
downloadmeson-696f72da1b60c6f255e8a96ed578683eccc6124c.zip
meson-696f72da1b60c6f255e8a96ed578683eccc6124c.tar.gz
meson-696f72da1b60c6f255e8a96ed578683eccc6124c.tar.bz2
Skip tests for cross compilation when they can not be run.
Diffstat (limited to 'run_cross_test.py')
-rwxr-xr-xrun_cross_test.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/run_cross_test.py b/run_cross_test.py
index e96e622..d1eb689 100755
--- a/run_cross_test.py
+++ b/run_cross_test.py
@@ -22,7 +22,6 @@ Not part of the main test suite because of two reasons:
Eventually migrate to something fancier.'''
-from glob import glob
import os, subprocess, shutil, sys
import environment
@@ -32,7 +31,7 @@ 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-mingw.txt']
+extra_flags = ['--cross-file', 'cross/ubuntu-armhf.txt']
ninja_command = environment.detect_ninja()
if ninja_command is None:
raise RuntimeError('Could not find Ninja executable.')