summaryrefslogtreecommitdiff
path: root/test cases/unit
diff options
context:
space:
mode:
authormakise-homura <akemi_homura@kurisa.ch>2018-03-21 16:45:22 +0300
committermakise-homura <akemi_homura@kurisa.ch>2018-03-21 16:45:22 +0300
commit86fa9b133d94d6d714c7d2e2c81651f9ff9bc87f (patch)
tree4a74c02642c987a1ff3b2030fe55b34d514687af /test cases/unit
parent43be74cf81b2dcb51c46d1ef44d649286d1d703e (diff)
downloadmeson-86fa9b133d94d6d714c7d2e2c81651f9ff9bc87f.tar.gz
test_reconfigure switched to b_coverage from b_lto
This is due to some compilers (e.g. lcc) don't support LTO, and therefore no b_lto meson option is available.
Diffstat (limited to 'test cases/unit')
-rw-r--r--test cases/unit/13 reconfigure/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/unit/13 reconfigure/meson.build b/test cases/unit/13 reconfigure/meson.build
index 102180e54..453644a02 100644
--- a/test cases/unit/13 reconfigure/meson.build
+++ b/test cases/unit/13 reconfigure/meson.build
@@ -1,5 +1,5 @@
project('reconfigure test', ['c'])
-if get_option('b_lto') != true
- error('b_lto not set')
+if get_option('b_coverage') != true
+ error('b_coverage not set')
endif