aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-12-19 17:51:48 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2016-12-20 20:35:29 +0200
commit701e3932619779a57f95732d61189d47e34dcb88 (patch)
treed00b92c38729bd2afe3ee2343216deda89ec9b22 /test cases
parent3fc67f49515544d17f11bd0853195c96373880f2 (diff)
downloadmeson-701e3932619779a57f95732d61189d47e34dcb88.zip
meson-701e3932619779a57f95732d61189d47e34dcb88.tar.gz
meson-701e3932619779a57f95732d61189d47e34dcb88.tar.bz2
Make cross tests use same framework as regular tests.
Diffstat (limited to 'test cases')
-rw-r--r--test cases/common/109 testframework options/meson.build6
-rw-r--r--test cases/common/122 skip/meson.build2
2 files changed, 4 insertions, 4 deletions
diff --git a/test cases/common/109 testframework options/meson.build b/test cases/common/109 testframework options/meson.build
index 010a69d..2773730 100644
--- a/test cases/common/109 testframework options/meson.build
+++ b/test cases/common/109 testframework options/meson.build
@@ -1,5 +1,5 @@
project('options', 'c')
-#assert(get_option('testoption') == 'A string with spaces', 'Incorrect value for testoption option.')
-#assert(get_option('other_one') == true, 'Incorrect value for other_one option.')
-#assert(get_option('combo_opt') == 'one', 'Incorrect value for combo_opt option.')
+assert(get_option('testoption') == 'A string with spaces', 'Incorrect value for testoption option.')
+assert(get_option('other_one') == true, 'Incorrect value for other_one option.')
+assert(get_option('combo_opt') == 'one', 'Incorrect value for combo_opt option.')
diff --git a/test cases/common/122 skip/meson.build b/test cases/common/122 skip/meson.build
index df2793d..1adedb6 100644
--- a/test cases/common/122 skip/meson.build
+++ b/test cases/common/122 skip/meson.build
@@ -1,4 +1,4 @@
project('skip', 'c')
-#error('MESON_SKIP_TEST this test is always skipped.')
+error('MESON_SKIP_TEST this test is always skipped.')