diff options
author | Andy Clement <aclement@pivotal.io> | 2019-01-21 09:47:07 -0800 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2019-01-21 09:47:07 -0800 |
commit | f6d0013eb2cddf9946ab07d0a4e129cc9c0869bb (patch) | |
tree | f4fa892a551e387b613b274a4942a942b68e6a9f /tests/bugs193 | |
parent | c194226895d50a9620cfe272e4e269625fa4bfd3 (diff) | |
download | aspectj-f6d0013eb2cddf9946ab07d0a4e129cc9c0869bb.tar.gz aspectj-f6d0013eb2cddf9946ab07d0a4e129cc9c0869bb.zip |
389678: overweaving test resources
Diffstat (limited to 'tests/bugs193')
-rw-r--r-- | tests/bugs193/389678/OverWeave_1/src/Application.java | 9 | ||||
-rw-r--r-- | tests/bugs193/389678/OverWeave_1/src/MyAspect.aj | 5 | ||||
-rw-r--r-- | tests/bugs193/389678/OverWeave_2/src/MyAspect2.aj | 5 | ||||
-rw-r--r-- | tests/bugs193/389678/OverWeave_4/src/MyAspect3.aj | 5 | ||||
-rw-r--r-- | tests/bugs193/389678/ow1.jar | bin | 0 -> 2828 bytes | |||
-rw-r--r-- | tests/bugs193/389678/ow2.jar | bin | 0 -> 1630 bytes | |||
-rw-r--r-- | tests/bugs193/389678/ow4.jar | bin | 0 -> 1630 bytes | |||
-rwxr-xr-x | tests/bugs193/389678/run.sh | 10 | ||||
-rwxr-xr-x | tests/bugs193/389678/runow.sh | 4 |
9 files changed, 38 insertions, 0 deletions
diff --git a/tests/bugs193/389678/OverWeave_1/src/Application.java b/tests/bugs193/389678/OverWeave_1/src/Application.java new file mode 100644 index 000000000..1d98f01e7 --- /dev/null +++ b/tests/bugs193/389678/OverWeave_1/src/Application.java @@ -0,0 +1,9 @@ +public class Application {
+ public static void main(String[] args) {
+ sayHelloTo("world");
+ }
+
+ public static void sayHelloTo(String subject) {
+ System.out.println("Hello " + subject + "!");
+ }
+}
diff --git a/tests/bugs193/389678/OverWeave_1/src/MyAspect.aj b/tests/bugs193/389678/OverWeave_1/src/MyAspect.aj new file mode 100644 index 000000000..cb9d42081 --- /dev/null +++ b/tests/bugs193/389678/OverWeave_1/src/MyAspect.aj @@ -0,0 +1,5 @@ +public aspect MyAspect {
+ before() : execution(* Application.*(..)) {
+ System.out.println(this.getClass().getName() + " -> " + thisJoinPointStaticPart);
+ }
+}
diff --git a/tests/bugs193/389678/OverWeave_2/src/MyAspect2.aj b/tests/bugs193/389678/OverWeave_2/src/MyAspect2.aj new file mode 100644 index 000000000..b59a2464f --- /dev/null +++ b/tests/bugs193/389678/OverWeave_2/src/MyAspect2.aj @@ -0,0 +1,5 @@ +public aspect MyAspect2 {
+ before() : execution(* *(..)) {
+ System.out.println(this.getClass().getName() + " -> " + thisJoinPointStaticPart);
+ }
+}
diff --git a/tests/bugs193/389678/OverWeave_4/src/MyAspect3.aj b/tests/bugs193/389678/OverWeave_4/src/MyAspect3.aj new file mode 100644 index 000000000..2c40e42c6 --- /dev/null +++ b/tests/bugs193/389678/OverWeave_4/src/MyAspect3.aj @@ -0,0 +1,5 @@ +public aspect MyAspect3 {
+ before() : execution(* *(..)) {
+ System.out.println(this.getClass().getName() + " -> " + thisJoinPointStaticPart);
+ }
+}
diff --git a/tests/bugs193/389678/ow1.jar b/tests/bugs193/389678/ow1.jar Binary files differnew file mode 100644 index 000000000..acb5cc6d4 --- /dev/null +++ b/tests/bugs193/389678/ow1.jar diff --git a/tests/bugs193/389678/ow2.jar b/tests/bugs193/389678/ow2.jar Binary files differnew file mode 100644 index 000000000..b04346f1e --- /dev/null +++ b/tests/bugs193/389678/ow2.jar diff --git a/tests/bugs193/389678/ow4.jar b/tests/bugs193/389678/ow4.jar Binary files differnew file mode 100644 index 000000000..85f5a057f --- /dev/null +++ b/tests/bugs193/389678/ow4.jar diff --git a/tests/bugs193/389678/run.sh b/tests/bugs193/389678/run.sh new file mode 100755 index 000000000..883bc7aa2 --- /dev/null +++ b/tests/bugs193/389678/run.sh @@ -0,0 +1,10 @@ +echo "ow1" +ajc -1.8 -sourceroots OverWeave_1/src -outjar ow1.jar -showWeaveInfo +echo "ow2" +ajc -1.8 -sourceroots OverWeave_2/src -outjar ow2.jar -showWeaveInfo +echo "ow4 build" +ajc -1.8 -sourceroots OverWeave_4/src -outjar ow4.jar -showWeaveInfo +echo "ow3" +ajc -1.8 -d out -inpath ow1.jar -aspectpath ow2.jar -showWeaveInfo -sourceroots OverWeave_3/src -outjar ow3.jar + +java -classpath out:/Users/aclement/installs/aspectj192/lib/aspectjrt.jar:ow2.jar Application diff --git a/tests/bugs193/389678/runow.sh b/tests/bugs193/389678/runow.sh new file mode 100755 index 000000000..c2ca8d3b1 --- /dev/null +++ b/tests/bugs193/389678/runow.sh @@ -0,0 +1,4 @@ +ajc -1.8 -sourceroots OverWeave_1/src -outjar ow1.jar +ajc -1.8 -sourceroots OverWeave_2/src -outjar ow2.jar +ajc -1.8 -Xset:overWeaving=true -d out -inpath ow1.jar -aspectpath ow2.jar -sourceroots OverWeave_3/src +java -classpath out:/Users/aclement/installs/aspectj192/lib/aspectjrt.jar:ow2.jar Application |