=== modified file 'lava_test/test_definitions/lt_ti_lava.py'
@@ -34,16 +34,17 @@
RUNSTEPS = ['cd lt_ti_lava && make $(OPTIONS) check']
DEPS = ['git-core', 'linux-libc-dev', 'build-essential']
-# test case name is before ":" , the test log is between ":" and "...",
-# the result is after "..."
+# test case id is before ":" and the result is after
# Each test case is separated with a test description beginning with "#"
+#
+# Example:
+# ###
+# ### sd_01:
+# ### Verify the system sees at least two partitions for SD device #0
+# ### ###
+# Test ./sd_01.sh: pass
-PATTERN = (
- "^(?P<test_case_id>[\w/\.]+):"
- "\s+"
- "(?P<message>.+)"
- "\.\.\.\s+"
- "(?P<result>\w+)")
+PATTERN = ("^(?P<test_case_id>[\w\s./]+):\s+(?P<result>\w+)")
installer = TestInstaller(INSTALLSTEPS, deps=DEPS)
runner = TestRunner(RUNSTEPS, default_options=DEFAULT_OPTIONS)