summaryrefslogtreecommitdiff
path: root/unittests/windowstests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2024-04-14 12:58:30 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2025-02-13 23:57:48 +0200
commitd37d649b08b832d52fa684bc0506829fb40d5261 (patch)
treec66e1461e91d6349457b826978e866fdabb19de1 /unittests/windowstests.py
parentea678ed82938ceac00682b2695b57193d36b71b4 (diff)
downloadmeson-d37d649b08b832d52fa684bc0506829fb40d5261.tar.gz
Make all Meson level options overridable per subproject.
Diffstat (limited to 'unittests/windowstests.py')
-rw-r--r--unittests/windowstests.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/unittests/windowstests.py b/unittests/windowstests.py
index f602d5f2e..9506a75ef 100644
--- a/unittests/windowstests.py
+++ b/unittests/windowstests.py
@@ -251,9 +251,15 @@ class WindowsTests(BasePlatformTests):
env=current_env)
# Check this has actually built the appropriate exes
- output_debug = subprocess.check_output(str(os.path.join(self.builddir+'_debug', 'genvslite.exe')))
- self.assertEqual( output_debug, b'Debug\r\n' )
- output_release = subprocess.check_output(str(os.path.join(self.builddir+'_release', 'genvslite.exe')))
+ exe_path = str(os.path.join(self.builddir+'_debug', 'genvslite.exe'))
+ self.assertTrue(os.path.exists(exe_path))
+ rc = subprocess.run([exe_path], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+ self.assertEqual(rc.returncode, 0, rc.stdout + rc.stderr)
+ output_debug = rc.stdout
+ self.assertEqual(output_debug, b'Debug\r\n' )
+ exe_path = str(os.path.join(self.builddir+'_release', 'genvslite.exe'))
+ self.assertTrue(os.path.exists(exe_path))
+ output_release = subprocess.check_output([exe_path])
self.assertEqual( output_release, b'Non-debug\r\n' )
finally: