# HG changeset patch # User Bernhard Urban # Date 1375884349 -7200 # Node ID 2e38c55153e51b3c77ead2c30ba11aac8cd94bd8 # Parent 8e3ba1110a711827f6bdcdf1633f1481a6d43975 unittest: also pick up @Parameters annotation diff -r 8e3ba1110a71 -r 2e38c55153e5 mx/commands.py --- 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"""