diff options
author | wisberg <wisberg> | 2002-12-18 16:35:04 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2002-12-18 16:35:04 +0000 |
commit | d5b8bb776ce6ef51420467fab5573803681e6685 (patch) | |
tree | 92072beb86e273695c5be316fe1e31f65c0a5acc /build | |
parent | 754dcbb620032af4660f1cb44b2c0e2cab778534 (diff) | |
download | aspectj-d5b8bb776ce6ef51420467fab5573803681e6685.tar.gz aspectj-d5b8bb776ce6ef51420467fab5573803681e6685.zip |
removed license checks for extruded modules
Diffstat (limited to 'build')
-rw-r--r-- | build/testsrc/BuildModuleTests.java | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/build/testsrc/BuildModuleTests.java b/build/testsrc/BuildModuleTests.java index 651b061a6..45e56a53c 100644 --- a/build/testsrc/BuildModuleTests.java +++ b/build/testsrc/BuildModuleTests.java @@ -60,23 +60,13 @@ public class BuildModuleTests extends TestCase { public void testLicense_asm() { checkLicense("asm"); } - public void testLicense_bcweaver() { - String module = "bcweaver"; - checkSourceDirectory("../" + module + "/src", module); - checkSourceDirectory("../" + module + "/testsrc/org", module); - } + public void testLicense_bridge() { checkLicense("bridge"); } public void testLicense_build() { checkLicense("build"); } - public void testLicense_jbuilder() { - checkLicense("jbuilder"); - } - public void testLicense_netbeans() { - checkLicense("netbeans"); - } public void testLicense_org_aspectj_ajdt_core() { checkLicense("org.aspectj.ajdt.core"); } @@ -97,18 +87,23 @@ public class BuildModuleTests extends TestCase { public void testLicense_testing() { checkLicense("testing"); } - public void testLicense_testing_drivers() { - checkLicense("testing-drivers"); - } public void testLicense_testing_client() { checkLicense("testing-client"); } + public void testLicense_testing_drivers() { + checkLicense("testing-drivers"); + } public void testLicense_testing_util() { checkLicense("testing-util"); } public void testLicense_util() { checkLicense("util"); } + public void testLicense_weaver() { + String module = "weaver"; + checkSourceDirectory("../" + module + "/src", module); + checkSourceDirectory("../" + module + "/testsrc/org", module); + } void checkLicense(String module) { checkSourceDirectory("../" + module + "/src", module); |