From 8f3275c8ca368c5d765bf66d3e3310f9300007f1 Mon Sep 17 00:00:00 2001 From: Cody Oss <6331106+codyoss@users.noreply.github.com> Date: Fri, 16 Jul 2021 11:14:06 -0600 Subject: [PATCH] test(spanner): fix errors not reporting when emulator test passes (#4451) Emulator tests were overwritting the results of the main test run which can cause errors that occured in main test run not to be reported when the emulator tests pass. Now emulator tests append to the test log. Updates: #4450 --- spanner/emulator_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spanner/emulator_test.sh b/spanner/emulator_test.sh index 3afc8e8dd86..f24d81a9c89 100755 --- a/spanner/emulator_test.sh +++ b/spanner/emulator_test.sh @@ -43,4 +43,4 @@ function cleanup() { } trap cleanup EXIT -go test -v -timeout 10m ./... -run '^TestIntegration_' 2>&1 | tee sponge_log.log +go test -v -timeout 10m ./... -run '^TestIntegration_' 2>&1 | tee -a sponge_log.log