blob: b1e142f20836d433e666be3315c7d2ad059af6a5 (
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
@@ -318,6 +318,14 @@
}
}
+ # Hangs on the buildds
+ if { [istarget "aarch64*-*-*"] } {
+ if { [string match "*go.test/test/chan/select5.go" $test] } {
+ untested $test
+ continue
+ }
+ }
+
if { [file tail $test] == "init1.go" } {
# This tests whether GC runs during init, which for gccgo
# it currently does not.
|