Skip to content

Commit e41d40d

Browse files
authored
Make PackageTestsDefault.reuse run native binary more robust (#1621)
1 parent e189c82 commit e41d40d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/integration/src/test/scala/scala/cli/integration/PackageTestsDefault.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class PackageTestsDefault extends PackageTestDefinitions(scalaVersionOpt = None)
2424
val packageOutput = packageRes.out.trim()
2525
val topPackageOutput = packageOutput.linesIterator.takeWhile(!_.startsWith("Wrote ")).toVector
2626
// no compilation or Scala Native pipeline output, as this should just re-use what the run command wrote
27-
expect(topPackageOutput.isEmpty)
27+
expect(topPackageOutput.forall(!_.startsWith("[info] ")))
2828
}
2929
}
3030

0 commit comments

Comments
 (0)