]> git.cworth.org Git - apitrace-tests/blobdiff - test.py
s/tracedump/apitrace dump/
[apitrace-tests] / test.py
diff --git a/test.py b/test.py
index b3d2ed9722a51a886dc6e4807e752e49acc77a26..b21512897b3634f92b9c029265941f861d44b69a 100755 (executable)
--- a/test.py
+++ b/test.py
@@ -244,7 +244,7 @@ class TestCase:
             sys.stdout.write('SKIP (no trace)\n')
             return
  
-        p = popen([self._get_build_path('tracedump'), trace], stdout=subprocess.PIPE)
+        p = popen([self._get_build_path('apitrace'), 'dump', '--color', trace], stdout=subprocess.PIPE)
         call_re = re.compile('^([0-9]+) (\w+)\(')
         swapbuffers = 0
         flushes = 0
@@ -263,7 +263,7 @@ class TestCase:
                     flushes += 1
         p.wait()
         if p.returncode != 0:
-            sys.stdout.write('FAIL (tracedump)\n')
+            sys.stdout.write('FAIL (apitrace dump)\n')
             return
 
         args = [self._get_build_path('glretrace')]