aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rwxr-xr-xsrc/test/shell/integration/build_event_stream_test.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/shell/integration/build_event_stream_test.sh b/src/test/shell/integration/build_event_stream_test.sh
index 7672dfe7ac..28ac02dc4a 100755
--- a/src/test/shell/integration/build_event_stream_test.sh
+++ b/src/test/shell/integration/build_event_stream_test.sh
@@ -177,13 +177,15 @@ function test_basic() {
# - the target_kind is reported
# - for single-configuration builds, there is precisely one configuration
# event reported; also make variables are shown
- bazel test --build_event_text_file=$TEST_log pkg:true \
+ bazel test --build_event_text_file=$TEST_log --tool_tag=MyFancyTool pkg:true \
|| fail "bazel test failed"
expect_log 'pkg:true'
# Command line
expect_log 'args: "test"'
expect_log 'args: "--build_event_text_file='
expect_log 'args: "pkg:true"'
+ # Options parsed
+ expect_log 'tool_tag: "MyFancyTool"'
# Build Finished
expect_log 'build_finished'
expect_log 'SUCCESS'