Skip to content

Commit 9253467

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

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

test/truffleruby-graalvm-tests/functions_test.sh

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

66
function setUp()
77
{
8+
# NOTE: truffleruby does not currently support FreeBSD
9+
if [[ "$os_platform" == *BSD ]]; then
10+
startSkipping
11+
fi
12+
813
ruby="truffleruby-graalvm"
914
ruby_version="23.1.0"
1015

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)