aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs190/modules/fff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs190/modules/fff')
-rw-r--r--tests/bugs190/modules/fff/aspects.jarbin0 -> 1512 bytes
-rw-r--r--tests/bugs190/modules/fff/demo.jarbin0 -> 2394 bytes
-rw-r--r--tests/bugs190/modules/fff/extra/AnotherAzpect.java7
-rw-r--r--tests/bugs190/modules/fff/module-info.java4
-rw-r--r--tests/bugs190/modules/fff/newdemo.jarbin0 -> 2455 bytes
-rw-r--r--tests/bugs190/modules/fff/otherpkg/Azpect.java7
-rw-r--r--tests/bugs190/modules/fff/pkg/Demo.java6
7 files changed, 24 insertions, 0 deletions
diff --git a/tests/bugs190/modules/fff/aspects.jar b/tests/bugs190/modules/fff/aspects.jar
new file mode 100644
index 000000000..246cab5f5
--- /dev/null
+++ b/tests/bugs190/modules/fff/aspects.jar
Binary files differ
diff --git a/tests/bugs190/modules/fff/demo.jar b/tests/bugs190/modules/fff/demo.jar
new file mode 100644
index 000000000..f00e0337d
--- /dev/null
+++ b/tests/bugs190/modules/fff/demo.jar
Binary files differ
diff --git a/tests/bugs190/modules/fff/extra/AnotherAzpect.java b/tests/bugs190/modules/fff/extra/AnotherAzpect.java
new file mode 100644
index 000000000..16b8c16d6
--- /dev/null
+++ b/tests/bugs190/modules/fff/extra/AnotherAzpect.java
@@ -0,0 +1,7 @@
+package extra;
+
+public aspect AnotherAzpect {
+ before(): execution(* *(..)) && !within(*Azpect) {
+ System.out.println("AnotherAzpect running");
+ }
+}
diff --git a/tests/bugs190/modules/fff/module-info.java b/tests/bugs190/modules/fff/module-info.java
new file mode 100644
index 000000000..6f03752e8
--- /dev/null
+++ b/tests/bugs190/modules/fff/module-info.java
@@ -0,0 +1,4 @@
+module demo {
+ exports pkg;
+ requires org.aspectj.runtime;
+}
diff --git a/tests/bugs190/modules/fff/newdemo.jar b/tests/bugs190/modules/fff/newdemo.jar
new file mode 100644
index 000000000..c32ca378a
--- /dev/null
+++ b/tests/bugs190/modules/fff/newdemo.jar
Binary files differ
diff --git a/tests/bugs190/modules/fff/otherpkg/Azpect.java b/tests/bugs190/modules/fff/otherpkg/Azpect.java
new file mode 100644
index 000000000..af53fdf49
--- /dev/null
+++ b/tests/bugs190/modules/fff/otherpkg/Azpect.java
@@ -0,0 +1,7 @@
+package otherpkg;
+
+public aspect Azpect {
+ before(): execution(* *(..)) && !within(Azpect) {
+ System.out.println("Azpect running");
+ }
+}
diff --git a/tests/bugs190/modules/fff/pkg/Demo.java b/tests/bugs190/modules/fff/pkg/Demo.java
new file mode 100644
index 000000000..694595053
--- /dev/null
+++ b/tests/bugs190/modules/fff/pkg/Demo.java
@@ -0,0 +1,6 @@
+package pkg;
+public class Demo {
+ public static void main(String[] argv) {
+ System.out.println("Demo running");
+ }
+}