Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misc/cgo/testsanitizers: TestMSAN/msan_fail timeout on freebsd-amd64-13_0 #56805

Open
gopherbot opened this issue Nov 17, 2022 · 2 comments
Open
Labels
NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. OS-FreeBSD
Milestone

Comments

@gopherbot
Copy link

gopherbot commented Nov 17, 2022

#!watchflakes
post <- builder == "freebsd-amd64-13_0" && pkg == "" && test == "TestMSAN"

Issue created automatically to collect these failures.

Example (log):

panic: test timed out after 5m0s
running tests:
	TestMSAN (5m0s)
	TestMSAN/msan_fail (4m48s)

syscall.Syscall6(0x214, 0x0, 0x900d, 0xc00007acb4, 0x18, 0x0, 0x0)
	/tmp/workdir/go/src/syscall/asm_unix_amd64.s:39 +0x5 fp=0xc00007ac60 sp=0xc00007ac58 pc=0x4745e5
os.wait6(0xc00030b1a0?, 0xc00007ad48?, 0xc00030b140?)
	/tmp/workdir/go/src/os/wait6_freebsd64.go:18 +0x4d fp=0xc00007acd0 sp=0xc00007ac60 pc=0x495ecd
os.(*Process).blockUntilWaitable(0xc0003025a0)
	/tmp/workdir/go/src/os/wait_wait6.go:20 +0x33 fp=0xc00007ad00 sp=0xc00007acd0 pc=0x495f53
os.(*Process).wait(0xc0003025a0)
	/tmp/workdir/go/src/os/exec_unix.go:22 +0x28 fp=0xc00007ad60 sp=0xc00007ad00 pc=0x491428
os.(*Process).Wait(...)
	/tmp/workdir/go/src/os/exec.go:132
os/exec.(*Cmd).Wait(0xc000308dc0)
	/tmp/workdir/go/src/os/exec/exec.go:890 +0x45 fp=0xc00007adc8 sp=0xc00007ad60 pc=0x4e5ca5
os/exec.(*Cmd).Run(0x40?)
	/tmp/workdir/go/src/os/exec/exec.go:590 +0x39 fp=0xc00007ade8 sp=0xc00007adc8 pc=0x4e47b9
os/exec.(*Cmd).CombinedOutput(0xc000308dc0)
	/tmp/workdir/go/src/os/exec/exec.go:1005 +0xa8 fp=0xc00007ae10 sp=0xc00007ade8 pc=0x4e6608
misc/cgo/testsanitizers_test.TestMSAN.func1(0xc000082ea0)
	/tmp/workdir/go/misc/cgo/testsanitizers/msan_test.go:72 +0x2c5 fp=0xc00007af70 sp=0xc00007ae10 pc=0x5355e5
testing.tRunner(0xc000082ea0, 0xc0000da190)

watchflakes

@gopherbot gopherbot added the NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. label Nov 17, 2022
@gopherbot
Copy link
Author

Found new dashboard test flakes for:

#!watchflakes
post <- builder == "freebsd-amd64-13_0" && pkg == "" && test == ""
2022-11-14 18:35 freebsd-amd64-13_0 go@74b6a220 TestMSAN (log)
panic: test timed out after 5m0s
running tests:
	TestMSAN (5m0s)
	TestMSAN/msan_fail (4m48s)

syscall.Syscall6(0x214, 0x0, 0x900d, 0xc00007acb4, 0x18, 0x0, 0x0)
	/tmp/workdir/go/src/syscall/asm_unix_amd64.s:39 +0x5 fp=0xc00007ac60 sp=0xc00007ac58 pc=0x4745e5
os.wait6(0xc00030b1a0?, 0xc00007ad48?, 0xc00030b140?)
	/tmp/workdir/go/src/os/wait6_freebsd64.go:18 +0x4d fp=0xc00007acd0 sp=0xc00007ac60 pc=0x495ecd
os.(*Process).blockUntilWaitable(0xc0003025a0)
	/tmp/workdir/go/src/os/wait_wait6.go:20 +0x33 fp=0xc00007ad00 sp=0xc00007acd0 pc=0x495f53
os.(*Process).wait(0xc0003025a0)
	/tmp/workdir/go/src/os/exec_unix.go:22 +0x28 fp=0xc00007ad60 sp=0xc00007ad00 pc=0x491428
os.(*Process).Wait(...)
	/tmp/workdir/go/src/os/exec.go:132
os/exec.(*Cmd).Wait(0xc000308dc0)
	/tmp/workdir/go/src/os/exec/exec.go:890 +0x45 fp=0xc00007adc8 sp=0xc00007ad60 pc=0x4e5ca5
os/exec.(*Cmd).Run(0x40?)
	/tmp/workdir/go/src/os/exec/exec.go:590 +0x39 fp=0xc00007ade8 sp=0xc00007adc8 pc=0x4e47b9
os/exec.(*Cmd).CombinedOutput(0xc000308dc0)
	/tmp/workdir/go/src/os/exec/exec.go:1005 +0xa8 fp=0xc00007ae10 sp=0xc00007ade8 pc=0x4e6608
misc/cgo/testsanitizers_test.TestMSAN.func1(0xc000082ea0)
	/tmp/workdir/go/misc/cgo/testsanitizers/msan_test.go:72 +0x2c5 fp=0xc00007af70 sp=0xc00007ae10 pc=0x5355e5
testing.tRunner(0xc000082ea0, 0xc0000da190)

watchflakes

@cherrymui cherrymui changed the title build: unrecognized failures on freebsd-amd64-13_0 misc/cgo/testsanitizers: TestMSAN fails on freebsd-amd64-13_0 Nov 17, 2022
@bcmills bcmills changed the title misc/cgo/testsanitizers: TestMSAN fails on freebsd-amd64-13_0 misc/cgo/testsanitizers: TestMSAN timeout on freebsd-amd64-13_0 Nov 17, 2022
@bcmills
Copy link
Contributor

bcmills commented Nov 17, 2022

(attn @golang/freebsd)

@bcmills bcmills changed the title misc/cgo/testsanitizers: TestMSAN timeout on freebsd-amd64-13_0 misc/cgo/testsanitizers: TestMSAN/msan_fail timeout on freebsd-amd64-13_0 Nov 17, 2022
@seankhliao seankhliao added this to the Unplanned milestone Nov 19, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. OS-FreeBSD
Projects
Status: No status
Development

No branches or pull requests

4 participants