Skip to content

Commit 40d781e

Browse files
committed
remove prints
1 parent d94cbe7 commit 40d781e

File tree

3 files changed

+0
-11
lines changed

3 files changed

+0
-11
lines changed

de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/ModelManagerTests.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -683,21 +683,16 @@ public void runmapLikePipeline_cacheRegression_closerToRunMap() throws Exception
683683
ModelManager.Changes changes = manager.syncCompilationUnitContent(fileHello, pkgHello + "\n// touch");
684684
manager.reconcile(changes);
685685
assertEquals(diags.get(fileHello), "", "reconcile after harmless edit must be clean");
686-
GlobalCaches.printStats();
687686

688687
// --- First RunMap-like compile on SAME model ---
689688
touchWar3mapJ(manager, fileWar3mapJ, " // pass 1");
690689
runRunmapLikeCompile_Closer(projectFolder, manager);
691690
assertLocalAIsClassA(manager.getCompilationUnit(fileHello));
692691

693-
GlobalCaches.printStats();
694-
695692
// --- Second RunMap-like compile (caches should not corrupt resolution) ---
696693
touchWar3mapJ(manager, fileWar3mapJ, " // pass 2");
697694
runRunmapLikeCompile_Closer(projectFolder, manager);
698695
assertLocalAIsClassA(manager.getCompilationUnit(fileHello));
699-
700-
GlobalCaches.printStats();
701696
}
702697

703698

de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/RealWorldExamples.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ public void setNullTests() throws IOException {
7979
@Test
8080
public void setFrottyBugKnockbackNull() throws IOException {
8181
super.testAssertOkFileWithStdLib(new File(TEST_DIR + "knockback.wurst"), false);
82-
GlobalCaches.printStats();
8382
}
8483

8584
@Test
@@ -157,8 +156,6 @@ public void test_stdlib() {
157156
.run()
158157
.getModel();
159158

160-
GlobalCaches.printStats();
161-
162159
}
163160

164161
@Test

de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/WurstScriptTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,13 +205,10 @@ private CompilationResult testScript() {
205205

206206
// translate with different options:
207207
testWithoutInliningAndOptimization(name, executeProg, executeTests, gui, compiler, model, executeProgOnlyAfterTransforms, runArgs);
208-
GlobalCaches.printStats();
209208

210209
testWithLocalOptimizations(name, executeProg, executeTests, gui, compiler, model, executeProgOnlyAfterTransforms, runArgs);
211-
GlobalCaches.printStats();
212210

213211
testWithInlining(name, executeProg, executeTests, gui, compiler, model, executeProgOnlyAfterTransforms, runArgs);
214-
GlobalCaches.printStats();
215212

216213
testWithInliningAndOptimizations(name, executeProg, executeTests, gui, compiler, model, executeProgOnlyAfterTransforms, runArgs);
217214

0 commit comments

Comments
 (0)