From: Carl Hetherington Date: Fri, 27 Nov 2020 22:27:14 +0000 (+0100) Subject: Fix running single tests on Windows. X-Git-Tag: v2.15.108~3 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=9121eb64810e39ba356d4a1b723a720adc82c096 Fix running single tests on Windows. --- diff --git a/cscript b/cscript index 1d206dbfd..9e7ba447d 100644 --- a/cscript +++ b/cscript @@ -737,11 +737,11 @@ def make_manual(target): def test(target, options, test): target.set('LC_ALL', 'C') if target.platform == 'windows': - cmd = 'run\\tests' + cmd = 'run\\tests ' else: cmd = 'run/tests ' if target.debug: cmd += '--backtrace ' if test is not None: - cmd += '--run_test=%s' % test + cmd += '-t %s' % test target.command(cmd) diff --git a/run/tests.bat b/run/tests.bat index 9db371a43..bdbd749cd 100644 --- a/run/tests.bat +++ b/run/tests.bat @@ -3,4 +3,4 @@ set DCPOMATIC_TEST_PRIVATE=c:\users\ci\dcpomatic-test-private xcopy ..\libdcp\tags build\tags\ copy ..\openssl\apps\openssl.exe build\test\ xcopy fonts build\fonts\ -build\test\unit-tests.exe +build\test\unit-tests.exe %1 %2