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 25e2f15 + 54edd74 commit 67b9bcb
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 8211728
Expand Down Expand Up @@ -108,7 +114,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 67b9bcb

Please sign in to comment.