You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
274 B
Python

# -*- coding: utf-8 -*-
import system_tests
import os
import unittest
bSkip=not os.path.isfile(system_tests.unit_tests)
if bSkip:
raise unittest.SkipTest('*** %s does not exist ***' % system_tests.unit_tests)
system_tests.BT.runTest(system_tests.unit_tests,raw=True)