Home | History | Annotate | Download | only in tvcm
      1 #!/usr/bin/env python
      2 import sys
      3 import tvcm
      4 
      5 from tvcm import test_runner
      6 
      7 if __name__ == '__main__':
      8   runner = test_runner.TestRunner()
      9   runner.AddModule(tvcm)
     10   sys.exit(runner.Main())
     11