diff options
author | Andy Clement <aclement@pivotal.io> | 2018-05-25 12:49:56 -0700 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2018-05-25 12:49:56 -0700 |
commit | a024df9675409344ecdf232d6ac3a283602323d5 (patch) | |
tree | 8e26353a70d78a92515bc53aabbe3ef1bfc4e581 /tests | |
parent | e5300c899245d98cbb97327aa6a879d379706607 (diff) | |
download | aspectj-a024df9675409344ecdf232d6ac3a283602323d5.tar.gz aspectj-a024df9675409344ecdf232d6ac3a283602323d5.zip |
Initial cut at bug 535086 - pertypewithin and non vis types
In this version unless you specify an aspect is privileged then the
pertypewithin clause will not match types not visible from the aspect
(private types or default vis types in another package)
Debating whether to change this to not require privileged.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/org/aspectj/systemtest/AllTests19.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/AllTests19.java b/tests/src/org/aspectj/systemtest/AllTests19.java index 8cb86d449..d46eeb6d2 100644 --- a/tests/src/org/aspectj/systemtest/AllTests19.java +++ b/tests/src/org/aspectj/systemtest/AllTests19.java @@ -12,6 +12,7 @@ package org.aspectj.systemtest; import org.aspectj.systemtest.ajc190.AllTestsAspectJ190; import org.aspectj.systemtest.ajc191.AllTestsAspectJ191; +import org.aspectj.systemtest.ajc192.AllTestsAspectJ192; import junit.framework.Test; import junit.framework.TestSuite; @@ -23,6 +24,7 @@ public class AllTests19 { // $JUnit-BEGIN$ suite.addTest(AllTestsAspectJ190.suite()); suite.addTest(AllTestsAspectJ191.suite()); + suite.addTest(AllTestsAspectJ192.suite()); suite.addTest(AllTests18.suite()); // $JUnit-END$ return suite; |