We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a832cb5 commit faabf0aCopy full SHA for faabf0a
unittests/platformagnostictests.py
@@ -203,10 +203,10 @@ def test_validate_dirs(self):
203
# Reconfigure of not empty builddir should work
204
self.new_builddir()
205
Path(self.builddir, 'dummy').touch()
206
- self.init(testdir, extra_args=['--reconfigure'])
+ self.init(testdir, extra_args=['--reconfigure', '--buildtype=custom'])
207
208
# Setup a valid builddir should update options but not reconfigure
209
- self.assertEqual(self.getconf('buildtype'), 'debug')
+ self.assertEqual(self.getconf('buildtype'), 'custom')
210
o = self.init(testdir, extra_args=['-Dbuildtype=release'])
211
self.assertIn('Directory already configured', o)
212
self.assertNotIn('The Meson build system', o)
0 commit comments