From 5d73321655986688e71a63397e9688e530078509 Mon Sep 17 00:00:00 2001 From: Jonathan Gibbons Date: Mon, 19 Aug 2024 17:16:40 -0700 Subject: [PATCH] change grep regex --- test/basic/ReportOnlyTest.gmk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/basic/ReportOnlyTest.gmk b/test/basic/ReportOnlyTest.gmk index 1c4a62d7..2a5b862e 100644 --- a/test/basic/ReportOnlyTest.gmk +++ b/test/basic/ReportOnlyTest.gmk @@ -49,7 +49,7 @@ $(BUILDTESTDIR)/ReportOnlyTest.ok: $(BUILDTESTDIR)/Basic.othervm.ok \ true "non-zero exit code from JavaTest intentionally ignored" $(CAT) $(@:%.ok=%.jt.log) $(GREP) headless $(BUILDTESTDIR)/Basic.othervm/log - if $(GREP) "headless: true" $(BUILDTESTDIR)/Basic.othervm/log > /dev/null ; then \ + if $(GREP) "headless: *true" $(BUILDTESTDIR)/Basic.othervm/log > /dev/null ; then \ EXPECT_PASS=91 ; \ EXPECT_FAIL=40 ; \ else \