aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2023-07-12 12:07:30 +0200
committerAleksandr Nogikh <nogikh@google.com>2023-07-12 14:58:29 +0000
commitb9754d58c294db4bce541c127d90603c9bfe2cb0 (patch)
tree55737efc0aafc87fc76d80e2c01b7e5764126838 /pkg
parent189e93f224aa365d476b65dc5693774254b20d8a (diff)
all: remove mentions of big-env
Use just env instead of that.
Diffstat (limited to 'pkg')
-rw-r--r--pkg/cover/report_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/cover/report_test.go b/pkg/cover/report_test.go
index 72f5c0665..64baf3ee2 100644
--- a/pkg/cover/report_test.go
+++ b/pkg/cover/report_test.go
@@ -220,7 +220,7 @@ func buildTestBinary(t *testing.T, target *targets.Target, test Test, dir string
errText = strings.ReplaceAll(errText, "‘", "'")
errText = strings.ReplaceAll(errText, "’", "'")
if strings.Contains(errText, "error: unrecognized command line option '-fsanitize-coverage=trace-pc'") &&
- (os.Getenv("SYZ_BIG_ENV") == "" || target.OS == targets.Akaros) {
+ (os.Getenv("SYZ_ENV") == "" || target.OS == targets.Akaros) {
t.Skip("skipping test, -fsanitize-coverage=trace-pc is not supported")
}
t.Fatal(err)
@@ -248,7 +248,7 @@ func buildTestBinary(t *testing.T, target *targets.Target, test Test, dir string
ldflags = ldflags[:len(ldflags)-1]
}
if _, err := osutil.RunCmd(time.Hour, "", target.CCompiler, ldflags...); err != nil {
- // Arm linker in the big-env image has a bug when linking a clang-produced files.
+ // Arm linker in the env image has a bug when linking a clang-produced files.
if regexp.MustCompile(`arm-linux-gnueabi.* assertion fail`).MatchString(err.Error()) {
t.Skipf("skipping test, broken arm linker (%v)", err)
}