Bump cscript for libdcp whitespace/tab fix.
[dcpomatic.git] / cscript
diff --git a/cscript b/cscript
index 14c6770a8ee9509dc5098dd43e413ce7be6dea62..12e465a2396f045aa3d8300176b91db8497dda00 100644 (file)
--- a/cscript
+++ b/cscript
@@ -236,9 +236,9 @@ def dependencies(target):
     else:
         ffmpeg_options = {}
 
-    return (('ffmpeg-cdist', 'b7bfe2f', ffmpeg_options),
-            ('libdcp', 'f028e8a'),
-            ('libsub', '3d8c3bc'))
+    return (('ffmpeg-cdist', 'aab2fb1', ffmpeg_options),
+            ('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)