Bump libdcp for SMPTE subtitle fix.
[libsub.git] / cscript
diff --git a/cscript b/cscript
index a9ddb059987dd41c4ea9b78f9c2cfa3cf87ab2b3..94a26d15decca79bb23d38233889902e6f88bf19 100644 (file)
--- a/cscript
+++ b/cscript
@@ -1,7 +1,7 @@
 import os
 
 def dependencies(target):
-    return (('libdcp', '89d891b'),)
+    return (('asdcplib-cth', 'f3b0fb8'), ('libcxml', '25e945f'), ('libdcp', '5e6d583'))
 
 def build(target, options):
     cmd = './waf configure --prefix=%s' % target.directory
@@ -24,7 +24,10 @@ def make_doxygen(target):
     target.command('doxygen')
     return os.path.abspath('build/doc/html')
 
-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)