You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mnemonic.apache.org by ga...@apache.org on 2017/04/20 23:00:30 UTC

incubator-mnemonic git commit: MNEMONIC-240: Fix Testcases suite with Spark module

Repository: incubator-mnemonic
Updated Branches:
  refs/heads/master 2bc10415b -> 0d96c7500


MNEMONIC-240: Fix Testcases suite with Spark module


Project: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/commit/0d96c750
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/tree/0d96c750
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/diff/0d96c750

Branch: refs/heads/master
Commit: 0d96c7500cecf73b3d7b492f64c518b82b6da73d
Parents: 2bc1041
Author: Wang, Gang(Gary) <ga...@intel.com>
Authored: Thu Apr 20 15:59:42 2017 -0700
Committer: Wang, Gang(Gary) <ga...@intel.com>
Committed: Thu Apr 20 15:59:42 2017 -0700

----------------------------------------------------------------------
 build-tools/runTestCases.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/0d96c750/build-tools/runTestCases.py
----------------------------------------------------------------------
diff --git a/build-tools/runTestCases.py b/build-tools/runTestCases.py
index da62a91..ca39dcf 100755
--- a/build-tools/runTestCases.py
+++ b/build-tools/runTestCases.py
@@ -29,7 +29,7 @@ if not os.path.exists(testLogDir):
 
 testCmdFile = 'build-tools/test.conf'
 tcCmdReg = re.compile('^mvn\s.*$')
-tcNameReg = re.compile('-Dtest=(.+?)\s')
+tcNameReg = re.compile('-D(?:test|suites)=(.+?)\s')
 tcModuleReg = re.compile('-pl\s(.+?)\s')
 with open(testCmdFile) as fp:
     for line in fp: