Skip to content

Commit a750c5a

Browse files
committed
Skip running truffleruby functions.sh tests under FreeBSD.
* TruffleRuby does not currently support FreeBSD.
1 parent 5f6944a commit a750c5a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

test/truffleruby-graalvm-tests/functions_test.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55

66
function setUp()
77
{
8+
if [[ "$os_platform" == *BSD ]]; then
9+
startSkipping
10+
fi
11+
812
ruby="truffleruby-graalvm"
913
ruby_version="23.1.0"
1014

test/truffleruby-tests/functions_test.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55

66
function setUp()
77
{
8+
if [[ "$os_platform" == *BSD ]]; then
9+
startSkipping
10+
fi
11+
812
ruby="truffleruby"
913
ruby_version="23.1.0"
1014

0 commit comments

Comments
 (0)