aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/test_fuzz_match.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/go/testdata/script/test_fuzz_match.txt')
-rw-r--r--src/cmd/go/testdata/script/test_fuzz_match.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/cmd/go/testdata/script/test_fuzz_match.txt b/src/cmd/go/testdata/script/test_fuzz_match.txt
index 9d4c5125d3..47e143952a 100644
--- a/src/cmd/go/testdata/script/test_fuzz_match.txt
+++ b/src/cmd/go/testdata/script/test_fuzz_match.txt
@@ -30,11 +30,10 @@ stdout '^ok.*no tests to run'
! stdout 'no targets to fuzz'
# Matches more than one fuzz target for fuzzing.
-go test -fuzz Fuzz -fuzztime 1x multiple_fuzz_test.go
-# The tests should run, but not be fuzzed
+! go test -fuzz Fuzz -fuzztime 1x multiple_fuzz_test.go
! stdout 'no tests to run'
! stdout 'no targets to fuzz'
-stdout ok
+stdout FAIL
stdout 'will not fuzz, -fuzz matches more than one target'
-- standalone_fuzz_test.go --