Skip to content

Commit

Permalink
Merge pull request #730 from pshipton/verbosegc
Browse files Browse the repository at this point in the history
Ignore verbosegc files in TestVersionedStream
  • Loading branch information
keithc-ca committed Nov 22, 2023
2 parents b0c33a9 + 5912660 commit 36736e0
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 36736e0

Please sign in to comment.