diff options
author | aclement <aclement> | 2010-08-18 17:35:04 +0000 |
---|---|---|
committer | aclement <aclement> | 2010-08-18 17:35:04 +0000 |
commit | f83c431923287cad220988407848a092e53e9c66 (patch) | |
tree | c5371d6c0909c5cc03b3cafbec3e121b5b132dff /tests | |
parent | 6b35ea418d5523a05eb591eec4cb30742b6649b6 (diff) | |
download | aspectj-f83c431923287cad220988407848a092e53e9c66.tar.gz aspectj-f83c431923287cad220988407848a092e53e9c66.zip |
test fixed for non-windows - uses correct lower case dir name
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/org/aspectj/systemtest/incremental/tools/IncrementalCompilationTests.java | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalCompilationTests.java b/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalCompilationTests.java index dbba686b0..ea44417c6 100644 --- a/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalCompilationTests.java +++ b/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalCompilationTests.java @@ -571,7 +571,8 @@ public class IncrementalCompilationTests extends AbstractMultiProjectIncremental } public void testDeletionAnonInnerType_278496_8() throws Exception { - String p = "PR278496_8"; + AjdeInteractionTestbed.VERBOSE=true; + String p = "pr278496_8"; initialiseProject(p); configureNonStandardCompileOptions(p, "-Xset:minimalModel=true"); build(p); @@ -713,9 +714,7 @@ public class IncrementalCompilationTests extends AbstractMultiProjectIncremental AspectJElementHierarchy model = (AspectJElementHierarchy) getModelFor(p).getHierarchy(); // check handle to anonymous inner: IProgramElement ipe = model.findElementForHandleOrCreate( - "=PR278496_8<generics*DeleteActionAspect.aj'DeleteActionAspect~main~\\[QString;[", false); - System.out.println("I am a marker"); - printModel(p); - // assertNotNull(ipe); + "=pr278496_8<generics*DeleteActionAspect.aj'DeleteActionAspect~main~\\[QString;[", false); + assertNotNull(ipe); } } |