aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorjhugunin <jhugunin>2003-07-16 23:19:54 +0000
committerjhugunin <jhugunin>2003-07-16 23:19:54 +0000
commit13b319a40f353f3c07eb0a7c4a40f3e3f6381573 (patch)
treeb7fba5c142a0c52b7863179e4904f2c3274bb1dd /tests
parentcd9946a959b393d386ea893f007b9cd2adbac74c (diff)
downloadaspectj-13b319a40f353f3c07eb0a7c4a40f3e3f6381573.tar.gz
aspectj-13b319a40f353f3c07eb0a7c4a40f3e3f6381573.zip
Fix for Bugzilla #39479, #40109
based on patch contributed by Andy Clement Generalizes the patch with a method org.aspectj.weaver.bcel.Utility.copyInstruction that works-around the bug in Select.copy(). Changed all calls to Instruction.copy() to use this new method, would be nice to add the rule: * declare error: * call(* Instruction.copy()) && within(org.aspectj.weaver) * && !withincode(* Utility.copyInstruction(Instruction)): * "use Utility.copyInstruction to work-around bug in Select.copy()";
Diffstat (limited to 'tests')
-rw-r--r--tests/ajcTests.xml12
-rw-r--r--tests/ajcTestsFailing.xml6
-rw-r--r--tests/bugs/SwitchInAround.java27
3 files changed, 39 insertions, 6 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml
index 8cf4bbc76..eed7526f9 100644
--- a/tests/ajcTests.xml
+++ b/tests/ajcTests.xml
@@ -6408,4 +6408,16 @@
<message kind="error" line="13"/>
</compile>
</ajc-test>
+
+ <ajc-test dir="bugs" pr="39479"
+ title="NPE in bcel.LazyMethodGen when delegating from one ctor to a second that includes a switch">
+ <compile files="NewSwitch.java"/>
+ <run class="NewSwitch"/>
+ </ajc-test>
+
+ <ajc-test dir="bugs" pr="40109"
+ title="switch statement in aspects crashes weaving">
+ <compile files="SwitchInAround.java"/>
+ <run class="SwitchInAround"/>
+ </ajc-test>
</suite>
diff --git a/tests/ajcTestsFailing.xml b/tests/ajcTestsFailing.xml
index 25314b777..4292bacbd 100644
--- a/tests/ajcTestsFailing.xml
+++ b/tests/ajcTestsFailing.xml
@@ -9,11 +9,5 @@
<compile files="lib.jar,TestAspect.aj,Test.java"/>
<run class="Test"/>
</ajc-test>
-
- <ajc-test dir="bugs" pr="39479"
- title="NPE in bcel.LazyMethodGen when delegating from one ctor to a second that includes a switch">
- <compile files="NewSwitch.java"/>
- <run class="NewSwitch"/>
- </ajc-test>
</suite>
diff --git a/tests/bugs/SwitchInAround.java b/tests/bugs/SwitchInAround.java
new file mode 100644
index 000000000..c86d71a3c
--- /dev/null
+++ b/tests/bugs/SwitchInAround.java
@@ -0,0 +1,27 @@
+import org.aspectj.testing.Tester;
+
+public class SwitchInAround {
+ public static void main(String[] args) {
+ SwitchInAround o = new SwitchInAround();
+ Tester.checkEqual(o.doit(1), "1");
+ Tester.checkEqual(o.doit(2), "2");
+ Tester.checkEqual(o.doit(3), "default");
+ }
+
+ public String doit(int i) {
+ return "doit";
+ }
+}
+
+privileged aspect A {
+ String around(int index): args(index) && call(String doit(int)) {
+ switch(index) {
+ case 1:
+ return "1";
+ case 2:
+ return "2";
+ default:
+ return "default";
+ }
+ }
+} \ No newline at end of file