diff options
Diffstat (limited to 'bitbake/lib/toaster/contrib/tts/tests.py')
-rw-r--r-- | bitbake/lib/toaster/contrib/tts/tests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/contrib/tts/tests.py b/bitbake/lib/toaster/contrib/tts/tests.py index 9acef46a38..3a4eed1e9f 100644 --- a/bitbake/lib/toaster/contrib/tts/tests.py +++ b/bitbake/lib/toaster/contrib/tts/tests.py | |||
@@ -30,7 +30,7 @@ import config | |||
30 | import pexpect | 30 | import pexpect |
31 | import sys, os, signal, time | 31 | import sys, os, signal, time |
32 | 32 | ||
33 | class TestPyCompilable(unittest.TestCase): | 33 | class Test00PyCompilable(unittest.TestCase): |
34 | ''' Verifies that all Python files are syntactically correct ''' | 34 | ''' Verifies that all Python files are syntactically correct ''' |
35 | def test_compile_file(self): | 35 | def test_compile_file(self): |
36 | try: | 36 | try: |
@@ -38,7 +38,7 @@ class TestPyCompilable(unittest.TestCase): | |||
38 | except ShellCmdException as exc: | 38 | except ShellCmdException as exc: |
39 | self.fail("Error compiling python files: %s" % (exc)) | 39 | self.fail("Error compiling python files: %s" % (exc)) |
40 | 40 | ||
41 | class TestPySystemStart(unittest.TestCase): | 41 | class Test01PySystemStart(unittest.TestCase): |
42 | ''' Attempts to start Toaster, verify that it is succesfull, and stop it ''' | 42 | ''' Attempts to start Toaster, verify that it is succesfull, and stop it ''' |
43 | def setUp(self): | 43 | def setUp(self): |
44 | run_shell_cmd("bash -c 'rm -f build/*log'") | 44 | run_shell_cmd("bash -c 'rm -f build/*log'") |
@@ -55,7 +55,7 @@ class TestPySystemStart(unittest.TestCase): | |||
55 | except ShellCmdException as exc: | 55 | except ShellCmdException as exc: |
56 | self.fail("Failed starting managed mode: %s" % (exc)) | 56 | self.fail("Failed starting managed mode: %s" % (exc)) |
57 | 57 | ||
58 | class TestHTML5Compliance(unittest.TestCase): | 58 | class Test02HTML5Compliance(unittest.TestCase): |
59 | def setUp(self): | 59 | def setUp(self): |
60 | self.origdir = os.getcwd() | 60 | self.origdir = os.getcwd() |
61 | self.crtdir = os.path.dirname(config.TESTDIR) | 61 | self.crtdir = os.path.dirname(config.TESTDIR) |