Skip to content

Commit

Permalink
8262332: serviceability/sa/ClhsdbJhisto.java fails with Test ERROR ja…
Browse files Browse the repository at this point in the history
…va.lang.RuntimeException: 'ParselTongue' missing from stdout/stderr

Reviewed-by: cjplummer
  • Loading branch information
lmesnik committed Feb 26, 2021
1 parent 07061fc commit 2515c42
Showing 1 changed file with 4 additions and 1 deletion.
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand All @@ -23,6 +23,8 @@

import jdk.test.lib.apps.LingeredApp;

import java.lang.ref.Reference;

interface Language {
static final long nbrOfWords = 99999;
public abstract long getNbrOfWords();
Expand Down Expand Up @@ -54,5 +56,6 @@ public long getNbrOfWords() {
System.out.println(lang.getNbrOfWords() + muggleSpeak.getNbrOfWords());

LingeredApp.main(args);
Reference.reachabilityFence(lang);
}
}

0 comments on commit 2515c42

Please sign in to comment.