Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / run_tests
1 #!/usr/bin/env python
2 import build # Brings in tvcm bindings.
3 import sys
4
5 import tvcm
6 from tvcm import test_runner
7
8 if __name__ == '__main__':
9   runner = test_runner.TestRunner()
10   runner.AddModule(build)
11   runner.AddModule(tvcm)
12   sys.exit(runner.Main())