Skip to content

Commit

Permalink
Merge openj9 into openj9-staging
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Shipton <Peter_Shipton@ca.ibm.com>
  • Loading branch information
pshipton committed Nov 22, 2023
2 parents ed48059 + 36736e0 commit f640919
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
* questions.
*/

/*
* ===========================================================================
* (c) Copyright IBM Corp. 2023, 2023 All Rights Reserved
* ===========================================================================
*/

/*
* @test
* @bug 8163798 8189611
Expand Down Expand Up @@ -104,7 +110,7 @@ public TestVersionedStream() throws IOException {
@AfterClass
public void close() throws IOException {
Files.walk(userdir, 1)
.filter(p -> !p.equals(userdir))
.filter(p -> !p.equals(userdir) && !p.getFileName().toString().startsWith("verbosegc"))
.forEach(p -> {
try {
if (Files.isDirectory(p)) {
Expand Down

0 comments on commit f640919

Please sign in to comment.