Bump libdcp for various fixes to Interop subtitle time parsing.
[dcpomatic.git] / cscript
diff --git a/cscript b/cscript
index 36e0ca7ecf367199c841805cea52f69fa4946fa5..e65d1f5c133ed67ca045fc98fc1f30948b16858f 100644 (file)
--- a/cscript
+++ b/cscript
@@ -237,8 +237,8 @@ def dependencies(target):
         ffmpeg_options = {}
 
     return (('ffmpeg-cdist', 'aab2fb1', ffmpeg_options),
-            ('libdcp', '702a013'),
-            ('libsub', 'a06e701'))
+            ('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)