Skip to content

Commit

Permalink
Drop resource summary from testing
Browse files Browse the repository at this point in the history
to reduce clutter in the CI log
  • Loading branch information
fniephaus committed Jan 14, 2025
1 parent 96d5a14 commit df27eab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ protected static final SqueakImage loadImageContext(final String imagePath) {
contextBuilder.allowAllAccess(true);
contextBuilder.option(SqueakLanguageConfig.ID + "." + SqueakLanguageOptions.IMAGE_PATH, imagePath);
contextBuilder.option(SqueakLanguageConfig.ID + "." + SqueakLanguageOptions.HEADLESS, "true");
contextBuilder.option(SqueakLanguageConfig.ID + "." + SqueakLanguageOptions.RESOURCE_SUMMARY, "true");
contextBuilder.option(SqueakLanguageConfig.ID + "." + SqueakLanguageOptions.TESTING, "true");
final String logLevel = System.getProperty("log.level");
if (logLevel != null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,8 @@ public class AbstractSqueakTestCaseWithImage extends AbstractSqueakTestCase {

@BeforeClass
public static void setUp() {
loadTestImage();
testWithImageIsActive = false;
}

public static void loadTestImage() {
loadTestImage(true);
testWithImageIsActive = false;
}

private static void loadTestImage(final boolean retry) {
Expand Down Expand Up @@ -95,7 +91,7 @@ public static void cleanUp() {

protected static void reloadImage() {
cleanUp();
loadTestImage(false);
loadTestImage(false, false);
}

private static void patchImageForTesting() {
Expand Down

0 comments on commit df27eab

Please sign in to comment.