commit | 9960b5fc8e1c64c447bb8d395e35c4e17518ebde | [log] [tgz] |
---|---|---|
author | Chris Hillery <chillery@lambda.nu> | Wed Mar 04 23:55:54 2015 -0800 |
committer | Ian Maxon <imaxon@uci.edu> | Fri Mar 06 10:55:17 2015 -0800 |
tree | 927631e953d7452a17919f04538864947bd4bdd5 | |
parent | 3035edecd333274e3c39a08377783cf826c6d6d7 [diff] |
Make testre work right Change-Id: I8dbfdcc8842efbfadc6bb764ae5f82483cebfc59 Reviewed-on: http://fulliautomatix.ics.uci.edu:8443/232 Tested-by: Jenkins <jenkins@fulliautomatix.ics.uci.edu> Reviewed-by: Ian Maxon <imaxon@uci.edu>
diff --git a/asterix-test-framework/src/main/java/edu/uci/ics/asterix/testframework/context/TestCaseContext.java b/asterix-test-framework/src/main/java/edu/uci/ics/asterix/testframework/context/TestCaseContext.java index e2e4cb4..7589909 100644 --- a/asterix-test-framework/src/main/java/edu/uci/ics/asterix/testframework/context/TestCaseContext.java +++ b/asterix-test-framework/src/main/java/edu/uci/ics/asterix/testframework/context/TestCaseContext.java
@@ -202,7 +202,7 @@ // Check all compilation units for matching // name. If ANY match, add the test. for (TestCase.CompilationUnit cu : tc.getCompilationUnit()) { - if (m_re.matcher(cu.getName()).matches()) { + if (m_re.matcher(cu.getName()).find()) { matches = true; break; }