diff options
author | wisberg <wisberg> | 2005-06-09 00:05:40 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2005-06-09 00:05:40 +0000 |
commit | ef8037126b0a8838c8914f63f8b5b3a09fcd3cea (patch) | |
tree | 5c15f63eaec9cb94b7aebb53397354d5cb444c09 /build/junit-patterns.properties | |
parent | 696e60f8a031d3c687965bf58222f6c8ad7a91ab (diff) | |
download | aspectj-ef8037126b0a8838c8914f63f8b5b3a09fcd3cea.tar.gz aspectj-ef8037126b0a8838c8914f63f8b5b3a09fcd3cea.zip |
revamped build scripts using Ant 1.6.3 features. Now using local.properties instead of command-line flags and sharing build-properties.xml.
Diffstat (limited to 'build/junit-patterns.properties')
-rw-r--r-- | build/junit-patterns.properties | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/build/junit-patterns.properties b/build/junit-patterns.properties new file mode 100644 index 000000000..fb980f3a6 --- /dev/null +++ b/build/junit-patterns.properties @@ -0,0 +1,18 @@ +# if true, then run JUnit tests via leaf tests +# else use junit.rootSuites +junit.leaves=false + +# define the root suite for for each module testsrc/ +junit.rootSuites=*ModuleTests.java + +# define leaf tests for each module testsrc/ +junit.includes=**/*Tests.java,**/*TestCase.java +junit.excludes=**/DocumentParserTest.java,\ +**/CommandTestCase.java,\ +**/VerifyWeaveTestCase.java,\ +**/KnownfailuresTests.java,\ +**/KnownLimitationsTests.java,\ +**/PureJavaTests.java,\ +**/AbstractWorldTestCase.java,\ +**/WeaveTestCase.java + |