mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
fba1f21b1d
Original commit message from CVS: * testsuite/Makefile.am (check-local): distcheck fixes * testsuite/common.py: Put in a couple of hacks to make distcheck pass make check * testsuite/interface.py: New test
12 lines
308 B
Python
12 lines
308 B
Python
#!/usr/bin/env python
|
|
import sys
|
|
from unittest import TestLoader, TextTestRunner
|
|
from types import ClassType
|
|
|
|
loader = TestLoader()
|
|
testRunner = TextTestRunner()
|
|
|
|
for name in ('element', 'interface', 'pipeline'):
|
|
print 'Testing', name
|
|
tests = loader.loadTestsFromName(name)
|
|
testRunner.run(tests)
|