diff options
author | jhugunin <jhugunin> | 2003-01-22 01:26:38 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-01-22 01:26:38 +0000 |
commit | e5660e9d2e962392ad1b3bcd1fc5cbe4725cf8ae (patch) | |
tree | 1abf1270c9d149061df0e563d3a5dfb59c50b382 /tests | |
parent | dcb2473da044211101743c8dd1fa8f21d55e29cd (diff) | |
download | aspectj-e5660e9d2e962392ad1b3bcd1fc5cbe4725cf8ae.tar.gz aspectj-e5660e9d2e962392ad1b3bcd1fc5cbe4725cf8ae.zip |
fix for failing test case that aspects must be constructed after their
clinit has run, noting that 1/3 remaining failures is in bugzilla
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ajcTests.xml | 7 | ||||
-rw-r--r-- | tests/ajcTestsFailing.xml | 12 |
2 files changed, 8 insertions, 11 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index cad73762e..58ac77e35 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -5553,4 +5553,11 @@ </compile> <run class="AroundAccess"/> </ajc-test> + + <ajc-test dir="new" pr="804" + title="aspect static initializers should run before instance constructed" + keywords="tofix"> + <compile files="AspectStaticInit.java"/> + <run class="AspectStaticInit"/> + </ajc-test> </suite> diff --git a/tests/ajcTestsFailing.xml b/tests/ajcTestsFailing.xml index 7add71530..3b1ec8e41 100644 --- a/tests/ajcTestsFailing.xml +++ b/tests/ajcTestsFailing.xml @@ -2,16 +2,6 @@ <!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd"> <suite> - <!-- This is an open question. Is it better for aspect static initializers - to run before or after the instance is constructed??? - --> - <ajc-test dir="new" pr="804" - title="aspect static initializers should run before instance constructed" - keywords="tofix"> - <compile files="AspectStaticInit.java"/> - <run class="AspectStaticInit"/> - </ajc-test> - <ajc-test dir="new" title="incompatible advice throws clause are a compile-time error" keywords="from-resolved_10x"> @@ -23,7 +13,7 @@ </compile> </ajc-test> - <ajc-test dir="new" + <ajc-test dir="new" pr="29934" title="can't apply around advice to the execution of around advice" keywords="from-resolved_10x"> <compile files="CflowCycles.java"/> |