Skip to content

Commit 130b444

Browse files
meisterTcopybara-github
authored andcommitted
Fix flakiness.
`sed` does not understand the plus operator without additional flags (which I don't know whether they are available on all systems that we test on), so we were missing one message we wanted to strip out. PiperOrigin-RevId: 502809677 Change-Id: If6cd39eb9553e736dd1471ee55b3e4947beb2f5a
1 parent e7351de commit 130b444

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/shell/integration/bazel_command_log_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function strip_lines_from_bazel_cc() {
3939
-e '/^\$TEST_TMPDIR defined: output root default is/d' \
4040
-e '/^OpenJDK 64-Bit Server VM warning: ignoring option UseSeparateVSpacesInYoungGen; support was removed in 8.0/d' \
4141
-e '/^Starting local B[azel]* server and connecting to it\.\.\.\.*$/d' \
42-
-e '/^\.\.\. still trying to connect to local B[azel]* server ([0-9]+) after [1-9][0-9]* seconds \.\.\.\.*$/d' \
42+
-e '/^\.\.\. still trying to connect to local B[azel]* server ([1-9][0-9]*) after [1-9][0-9]* seconds \.\.\.\.*$/d' \
4343
-e '/^Killed non-responsive server process/d' \
4444
-e '/server needs to be killed, because the startup options are different/d' \
4545
-e '/^WARNING: Waiting for server process to terminate (waited 5 seconds, waiting at most 60)$/d' \

0 commit comments

Comments
 (0)