Skip to content

Commit df27eab

Browse files
committed
Drop resource summary from testing
to reduce clutter in the CI log
1 parent 96d5a14 commit df27eab

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/de.hpi.swa.trufflesqueak.test/src/de/hpi/swa/trufflesqueak/test/AbstractSqueakTestCase.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ protected static final SqueakImage loadImageContext(final String imagePath) {
9696
contextBuilder.allowAllAccess(true);
9797
contextBuilder.option(SqueakLanguageConfig.ID + "." + SqueakLanguageOptions.IMAGE_PATH, imagePath);
9898
contextBuilder.option(SqueakLanguageConfig.ID + "." + SqueakLanguageOptions.HEADLESS, "true");
99-
contextBuilder.option(SqueakLanguageConfig.ID + "." + SqueakLanguageOptions.RESOURCE_SUMMARY, "true");
10099
contextBuilder.option(SqueakLanguageConfig.ID + "." + SqueakLanguageOptions.TESTING, "true");
101100
final String logLevel = System.getProperty("log.level");
102101
if (logLevel != null) {

src/de.hpi.swa.trufflesqueak.test/src/de/hpi/swa/trufflesqueak/test/AbstractSqueakTestCaseWithImage.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,8 @@ public class AbstractSqueakTestCaseWithImage extends AbstractSqueakTestCase {
5353

5454
@BeforeClass
5555
public static void setUp() {
56-
loadTestImage();
57-
testWithImageIsActive = false;
58-
}
59-
60-
public static void loadTestImage() {
6156
loadTestImage(true);
57+
testWithImageIsActive = false;
6258
}
6359

6460
private static void loadTestImage(final boolean retry) {
@@ -95,7 +91,7 @@ public static void cleanUp() {
9591

9692
protected static void reloadImage() {
9793
cleanUp();
98-
loadTestImage(false);
94+
loadTestImage(false, false);
9995
}
10096

10197
private static void patchImageForTesting() {

0 commit comments

Comments
 (0)