We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d42d56b commit fe3ba74Copy full SHA for fe3ba74
src/cmd/link/dwarf_test.go
@@ -364,6 +364,10 @@ func TestFlagW(t *testing.T) {
364
if runtime.GOOS == "aix" {
365
t.Skip("internal/xcoff cannot parse file without symbol table")
366
}
367
+ if !platform.ExecutableHasDWARF(runtime.GOOS, runtime.GOARCH) {
368
+ t.Skipf("skipping on %s/%s: no DWARF symbol table in executables", runtime.GOOS, runtime.GOARCH)
369
+ }
370
+
371
t.Parallel()
372
373
tmpdir := t.TempDir()
0 commit comments