Bump cscript for libdcp whitespace/tab fix.
[dcpomatic.git] / cscript
diff --git a/cscript b/cscript
index 08cbff2e0d2ce7f922bf08bd447dfa198cfe60a0..12e465a2396f045aa3d8300176b91db8497dda00 100644 (file)
--- a/cscript
+++ b/cscript
@@ -237,8 +237,8 @@ def dependencies(target):
         ffmpeg_options = {}
 
     return (('ffmpeg-cdist', 'aab2fb1', ffmpeg_options),
-            ('libdcp', '8edc24f'),
-            ('libsub', 'fcc0539'))
+            ('libdcp', '07e9426'),
+            ('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)