| Server IP : 157.230.181.24 / Your IP : 216.73.217.11 Web Server : Apache/2.4.58 (Ubuntu) System : Linux conductive 6.8.0-117-generic #117-Ubuntu SMP PREEMPT_DYNAMIC Tue May 5 19:26:24 UTC 2026 x86_64 User : ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/go/src/cmd/go/testdata/script/ |
Upload File : |
[!fuzz] skip
[short] skip
env GOCACHE=$WORK/cache
go test -fuzz=FuzzA -fuzztime=100x fuzz_setenv_test.go
-- fuzz_setenv_test.go --
package fuzz
import (
"flag"
"os"
"testing"
)
func FuzzA(f *testing.F) {
if s := os.Getenv("TEST_FUZZ_SETENV_A"); isWorker() && s == "" {
f.Fatal("environment variable not set")
} else if !isWorker() && s != "" {
f.Fatal("environment variable already set")
}
f.Setenv("TEST_FUZZ_SETENV_A", "A")
if os.Getenv("TEST_FUZZ_SETENV_A") == "" {
f.Fatal("Setenv did not set environment variable")
}
f.Fuzz(func(*testing.T, []byte) {})
}
func FuzzB(f *testing.F) {
if os.Getenv("TEST_FUZZ_SETENV_A") != "" {
f.Fatal("environment variable not cleared after FuzzA")
}
f.Skip()
}
func isWorker() bool {
f := flag.Lookup("test.fuzzworker")
if f == nil {
return false
}
get, ok := f.Value.(flag.Getter)
if !ok {
return false
}
return get.Get() == interface{}(true)
}