Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTill Brychcy2017-10-29 20:50:59 +0000
committerTill Brychcy2017-11-06 11:45:10 +0000
commit9b27fbf26574b796246129bd7cabbca6c1f5293c (patch)
treefe5abdde8bf47dc1b7cd69c0ab5ca55cff818f99 /org.eclipse.jdt.apt.tests
parent72a56bd17a4cabfafe0bcce39692b113cbc9ad8f (diff)
downloadeclipse.jdt.core-9b27fbf26574b796246129bd7cabbca6c1f5293c.tar.gz
eclipse.jdt.core-9b27fbf26574b796246129bd7cabbca6c1f5293c.tar.xz
eclipse.jdt.core-9b27fbf26574b796246129bd7cabbca6c1f5293c.zip
Bug 526376 - Duplicated line in IncrementalImageBuilder
Diffstat (limited to 'org.eclipse.jdt.apt.tests')
-rw-r--r--org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/AptBuilderTests.java12
1 files changed, 9 insertions, 3 deletions
diff --git a/org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/AptBuilderTests.java b/org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/AptBuilderTests.java
index d580d9bc1e..dd3efcd0e9 100644
--- a/org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/AptBuilderTests.java
+++ b/org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/AptBuilderTests.java
@@ -340,7 +340,9 @@ public class AptBuilderTests extends APTTestBase
incrementalBuild( project.getFullPath() );
expectingNoProblems();
expectingCompiledClasses(new String[]{"p1.p2.p3.p4.B", "p1.p2.p3.p4.A"}); //$NON-NLS-1$ //$NON-NLS-2$
- expectingCompilingOrder(new String[]{"p1.p2.p3.p4.B", "p1.p2.p3.p4.A"}); //$NON-NLS-1$ //$NON-NLS-2$
+ expectingCompilingOrder(
+ new String[] { "/org.eclipse.jdt.apt.tests.AptBuilderTestsProject/src/p1/p2/p3/p4/B.java", //$NON-NLS-1$
+ "/org.eclipse.jdt.apt.tests.AptBuilderTestsProject/src/p1/p2/p3/p4/A.java" }); //$NON-NLS-1$
//
// Now have p1.p2.p3.p4.A w/ an anontation whose processor looks up p1.p2.p3.p4.C by name
@@ -371,7 +373,10 @@ public class AptBuilderTests extends APTTestBase
// file a second time with the Compiler#DebugRequestor
//
expectingCompiledClasses(new String[]{"p1.p2.p3.p4.C", "p1.p2.p3.p4.A"}); //$NON-NLS-1$ //$NON-NLS-2$
- expectingCompilingOrder(new String[]{"p1.p2.p3.p4.C", "p1.p2.p3.p4.A"}); //$NON-NLS-1$ //$NON-NLS-2$
+ expectingCompilingOrder(
+ new String[] { "/org.eclipse.jdt.apt.tests.AptBuilderTestsProject/src/p1/p2/p3/p4/C.java",
+ "/org.eclipse.jdt.apt.tests.AptBuilderTestsProject/src/p1/p2/p3/p4/A.java",
+ "/org.eclipse.jdt.apt.tests.AptBuilderTestsProject/src/p1/p2/p3/p4/A.java" });
//
// now make sure that p1.p2.p3.p4.C is not compiled when A uses NoOp Annotation
@@ -402,7 +407,8 @@ public class AptBuilderTests extends APTTestBase
// file a second time with the Compiler#DebugRequestor
//
expectingCompiledClasses(new String[]{"p1.p2.p3.p4.C" }); //$NON-NLS-1$ //$NON-NLS-2$
- expectingCompilingOrder(new String[]{"p1.p2.p3.p4.C" }); //$NON-NLS-1$ //$NON-NLS-2$
+ expectingCompilingOrder(
+ new String[] { "/org.eclipse.jdt.apt.tests.AptBuilderTestsProject/src/p1/p2/p3/p4/C.java" });
}
/**

Back to the top