summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2020-04-20 22:46:53 +0900
committerYusuke Endoh <mame@ruby-lang.org>2020-04-20 22:48:10 +0900
commit847e25975ce8f5bda46a01afd67e4fdb7f1fef41 (patch)
treebcd8973afa471ffc747445eb8260655bf395d32e
parent3cd3a507e336a81c7e00313b9effb80a8e596a6e (diff)
Skip JIT tests on riscv64 due to SEGV of cc1
-rw-r--r--test/lib/jit_support.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/lib/jit_support.rb b/test/lib/jit_support.rb
index 8f1c024ee7..5977e84c1d 100644
--- a/test/lib/jit_support.rb
+++ b/test/lib/jit_support.rb
@@ -9,9 +9,11 @@ module JITSupport
%r[\A.*/bin/intel64/icc\b],
%r[\A/opt/developerstudio\d+\.\d+/bin/cc\z],
]
+ # debian-riscv64: "gcc: internal compiler error: Segmentation fault signal terminated program cc1" https://rubyci.org/logs/rubyci.s3.amazonaws.com/debian-riscv64/ruby-master/log/20200420T083601Z.fail.html.gz
# freebsd12: cc1 internal failure https://rubyci.org/logs/rubyci.s3.amazonaws.com/freebsd12/ruby-master/log/20200306T103003Z.fail.html.gz
# rhel8: one or more PCH files were found, but they were invalid https://rubyci.org/logs/rubyci.s3.amazonaws.com/rhel8/ruby-master/log/20200306T153003Z.fail.html.gz
PENDING_RUBYCI_NICKNAMES = %w[
+ debian-riscv64
freebsd12
rhel8
]