diff options
author | aclement <aclement> | 2008-08-29 21:18:34 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-08-29 21:18:34 +0000 |
commit | 3975be0732ca3b8063b234dd1c396b69f9ed4c7b (patch) | |
tree | aeec1cab47a6c9677b2882c7d416a51f40e19fb6 /tests | |
parent | 5590d8b5c60ff991f6af1cbfe7a0df2954460d9d (diff) | |
download | aspectj-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.java | 2 |
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(); |