summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authoraclement <aclement>2008-08-29 21:18:34 +0000
committeraclement <aclement>2008-08-29 21:18:34 +0000
commit3975be0732ca3b8063b234dd1c396b69f9ed4c7b (patch)
treeaeec1cab47a6c9677b2882c7d416a51f40e19fb6 /tests
parent5590d8b5c60ff991f6af1cbfe7a0df2954460d9d (diff)
downloadaspectj-3975be0732ca3b8063b234dd1c396b69f9ed4c7b.tar.gz
aspectj-3975be0732ca3b8063b234dd1c396b69f9ed4c7b.zip
245566: introduced name environment sharing across compiles through the state object
Diffstat (limited to 'tests')
-rw-r--r--tests/src/org/aspectj/systemtest/incremental/tools/IncrementalPerformanceTests.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalPerformanceTests.java b/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalPerformanceTests.java
index 32faf78fd..81ec7eac3 100644
--- a/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalPerformanceTests.java
+++ b/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalPerformanceTests.java
@@ -51,6 +51,8 @@ public class IncrementalPerformanceTests extends AbstractMultiProjectIncremental
long nochangebuild = getTimeTakenForBuild(proj);
System.out.println("Incr build time for no changes at all: " + nochangebuild + "ms");
+ // An incremental build with no source file changes at all *and* we tell the compiler there are
+ // no source changes (so it doesn't need to check timestamps). super fast
addProjectSourceFileChanged(proj, null);
build(proj);
checkWasntFullBuild();