X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=cscript;h=e65d1f5c133ed67ca045fc98fc1f30948b16858f;hb=131f0327b8e2fcd07c54201b6e7d4f60591811ba;hp=a752d797ab43687ec85900989f5f323f6cc4d24e;hpb=cab3c244470c4b2ff3966a82debb57f4b9a25787;p=dcpomatic.git diff --git a/cscript b/cscript index a752d797a..e65d1f5c1 100644 --- a/cscript +++ b/cscript @@ -236,9 +236,9 @@ def dependencies(target): else: ffmpeg_options = {} - return (('ffmpeg-cdist', '3544a35', ffmpeg_options), - ('libdcp', 'f028e8a'), - ('libsub', '3d8c3bc')) + return (('ffmpeg-cdist', 'aab2fb1', ffmpeg_options), + ('libdcp', '8837fe7'), + ('libsub', '3e299e5')) def configure_options(target): opt = '' @@ -371,7 +371,10 @@ def make_manual(target): target.command('pdflatex colour.tex') return [os.path.abspath('pdf'), os.path.abspath('html'), os.path.abspath('colour.pdf')] -def test(target): +def test(target, test): if target.platform != 'windows': target.set('LC_ALL', 'C') - target.command('run/tests') + if test is None: + target.command('run/tests') + else: + target.command('run/tests --run_test=%s' % test)