X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=cscript;h=e65d1f5c133ed67ca045fc98fc1f30948b16858f;hb=a30b789020ae356d8e15c6943ae5706b83df5b84;hp=6882a3ae0a109e70e54c5b07e1a9ef8b773cb54b;hpb=5dd8d4e5c67ede91f868e78d3f5ecb9ab2dd935e;p=dcpomatic.git diff --git a/cscript b/cscript index 6882a3ae0..e65d1f5c1 100644 --- a/cscript +++ b/cscript @@ -237,8 +237,8 @@ def dependencies(target): ffmpeg_options = {} return (('ffmpeg-cdist', 'aab2fb1', ffmpeg_options), - ('libdcp', '8edc24f'), - ('libsub', '65a0794')) + ('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)