changeset 11237:2e38c55153e5

unittest: also pick up @Parameters annotation
author Bernhard Urban <bernhard.urban@jku.at>
date Wed, 07 Aug 2013 16:05:49 +0200
parents 8e3ba1110a71
children 4f1aa732e60f
files mx/commands.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mx/commands.py	Wed Aug 07 12:52:39 2013 +0200
+++ b/mx/commands.py	Wed Aug 07 16:05:49 2013 +0200
@@ -809,7 +809,7 @@
 def unittest(args):
     """run the JUnit tests (all testcases){0}"""
 
-    _unittest(args, ['@Test', '@LongTest'])
+    _unittest(args, ['@Test', '@LongTest', '@Parameters'])
 
 def shortunittest(args):
     """run the JUnit tests (short testcases only){0}"""
@@ -819,7 +819,7 @@
 def longunittest(args):
     """run the JUnit tests (long testcases only){0}"""
 
-    _unittest(args, ['@LongTest'])
+    _unittest(args, ['@LongTest', '@Parameters'])
 
 def buildvms(args):
     """build one or more VMs in various configurations"""