diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-01-04 22:38:40 +0000 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2018-01-04 22:51:57 +0000 |
commit | fd683a2b81ae6398674b21f2047f7db340a1e556 (patch) | |
tree | 71b00d6dfc4d211347f391746a460f1592a9b4a0 /run_project_tests.py | |
parent | 1a948b2e67bad0babed6b5a41d10c9e9f4236552 (diff) | |
download | meson-fd683a2b81ae6398674b21f2047f7db340a1e556.zip meson-fd683a2b81ae6398674b21f2047f7db340a1e556.tar.gz meson-fd683a2b81ae6398674b21f2047f7db340a1e556.tar.bz2 |
CI: Run boost test for Cygwin
Also, use '^' to escape newlines in appveyor-install.bat to avoid an
absurdly long line, remove some unnecessary quotation, and alphabetically
sort packages
Also, define the _XOPEN_SOURCE feature test macro in the boost test to avoid
'not declared in this scope' warnings for pthread_rwlock_init(), etc.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 384dbcc..0bf5f31 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -495,12 +495,9 @@ def detect_tests_to_run(): if mesonlib.is_windows(): # TODO: Set BOOST_ROOT in .appveyor.yml gathered_tests += [('framework', ['test cases/frameworks/1 boost'], 'BOOST_ROOT' not in os.environ)] - elif mesonlib.is_osx(): + elif mesonlib.is_osx() or mesonlib.is_cygwin(): # Just do the BOOST test gathered_tests += [('framework', ['test cases/frameworks/1 boost'], False)] - elif mesonlib.is_cygwin(): - # Skip all the framework tests - gathered_tests += [('framework', gather_tests('test cases/frameworks'), True)] else: gathered_tests += [('framework', gather_tests('test cases/frameworks'), False)] return gathered_tests |