From b9754d58c294db4bce541c127d90603c9bfe2cb0 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Wed, 12 Jul 2023 12:07:30 +0200 Subject: all: remove mentions of big-env Use just env instead of that. --- pkg/cover/report_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkg') 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) } -- cgit mrf-deployment