Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 4 additions & 19 deletions .github/scripts/ci-test-stdlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,14 @@ declare -a tests_to_skip=(
# getnameinfo(ip"0.1.1.1") == "0.1.1.1"
# DNSError: ip"0.1.1.1", temporary failure (EAI_AGAIN)
"Sockets"
# LoadError: No active project
# See https://github.com/JuliaLang/julia/issues/50055.
# FIXME: We should run this test when the above issue is resolved.
"Pkg",
"SparseArrays"
# Running LinearAlgebra in a separate job
"LinearAlgebra"
# Skipping Distributed tests
"Distributed"
)

declare -a max_moving_tests_to_skip=(
# Skipping tests that fail for max moving Immix
# see https://github.com/mmtk/mmtk-julia/issues/259
"LazyArtifacts"
# LoadError: No active project
# See https://github.com/JuliaLang/julia/issues/50055.
# FIXME: We should run this test when the above issue is resolved.
"Pkg"
)

# These tests need multiple workers.
Expand Down Expand Up @@ -76,14 +69,6 @@ do
continue
fi

# Skip tests with max moving build
if [[ "${max_moving_tests_to_skip[@]}" =~ "$test" ]]; then
if [ "$moving_feature" == "max_moving" ]; then
echo "-> Skip"
continue
fi
fi

if [[ "${tests_with_multi_workers[@]}" =~ "$test" ]]; then
echo "-> Run multi threaded"
ci_run_jl_test $test 2 $moving_feature
Expand Down