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.
This commit is contained in:
parent
43be74cf81
commit
86fa9b133d
|
@ -2543,7 +2543,7 @@ endian = 'little'
|
||||||
|
|
||||||
def test_reconfigure(self):
|
def test_reconfigure(self):
|
||||||
testdir = os.path.join(self.unit_test_dir, '13 reconfigure')
|
testdir = os.path.join(self.unit_test_dir, '13 reconfigure')
|
||||||
self.init(testdir, ['-Db_lto=true'], default_args=False)
|
self.init(testdir, ['-Db_coverage=true'], default_args=False)
|
||||||
self.build('reconfigure')
|
self.build('reconfigure')
|
||||||
|
|
||||||
def test_cross_file_system_paths(self):
|
def test_cross_file_system_paths(self):
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('reconfigure test', ['c'])
|
project('reconfigure test', ['c'])
|
||||||
|
|
||||||
if get_option('b_lto') != true
|
if get_option('b_coverage') != true
|
||||||
error('b_lto not set')
|
error('b_coverage not set')
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue