Skip to content

Commit 551f819

Browse files
committed
Unignore invoke/reader/struczero/tpmethod on linux & verify the goplus#1558
1 parent b27823f commit 551f819

1 file changed

Lines changed: 3 additions & 14 deletions

File tree

cl/compile_test.go

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,7 @@ func TestFromTestgo(t *testing.T) {
3838
}
3939

4040
func TestRunFromTestgo(t *testing.T) {
41-
var ignore []string
42-
if runtime.GOOS == "linux" {
43-
// Linux output differs for these cases; skip until stabilized.
44-
// FIXME(zzy): NULL pointer formatting differs (0x0 vs (nil)) on Linux.
45-
ignore = []string{
46-
"./_testgo/invoke",
47-
"./_testgo/reader",
48-
"./_testgo/struczero",
49-
}
50-
}
51-
cltest.RunFromDir(t, "", "./_testgo", ignore)
41+
cltest.RunFromDir(t, "", "./_testgo", nil)
5242
}
5343

5444
func TestFromTestpy(t *testing.T) {
@@ -91,9 +81,8 @@ func TestRunFromTestrt(t *testing.T) {
9181
var ignore []string
9282
if runtime.GOOS == "linux" {
9383
ignore = []string{
94-
"./_testrt/asmfull", // Output is macOS-specific.
95-
"./_testrt/fprintf", // Linux uses different stderr symbol (no __stderrp).
96-
"./_testrt/tpmethod", // FIXME(zzy): NULL pointer formatting differs (0x0 vs (nil)) on Linux.
84+
"./_testrt/asmfull", // Output is macOS-specific.
85+
"./_testrt/fprintf", // Linux uses different stderr symbol (no __stderrp).
9786
}
9887
}
9988
cltest.RunFromDir(t, "", "./_testrt", ignore)

0 commit comments

Comments
 (0)