summaryrefslogtreecommitdiffstats
path: root/debian/patches/go-testsuite.diff
blob: b424eb5b1f4dd7595c2d42db6117cac7b18a762e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# DP: Skip Go testcase on AArch64 which hangs on the buildds.

--- a/src/gcc/testsuite/go.test/go-test.exp
+++ b/src/gcc/testsuite/go.test/go-test.exp
@@ -460,6 +460,14 @@ proc go-gc-tests { } {
 	    continue
 	}
 
+	# Hangs on the buildds
+	if { [istarget "aarch64*-*-*"] } {
+	    if { [file tail $test] == "pprof.go" } {
+		untested $test
+		continue
+	    }
+	}
+
 	if { [file tail $test] == "init1.go" } {
 	    # This tests whether GC runs during init, which for gccgo
 	    # it currently does not.