From 6739bc373dbb4e2f6277226122a734631f5a6097 Mon Sep 17 00:00:00 2001 From: Eduardo Souza Date: Mon, 15 Sep 2025 03:34:01 +0000 Subject: [PATCH 1/2] Enable stdlib tests that failed for max copying --- .github/scripts/ci-test-stdlib.sh | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/scripts/ci-test-stdlib.sh b/.github/scripts/ci-test-stdlib.sh index 87d4426..45777ec 100755 --- a/.github/scripts/ci-test-stdlib.sh +++ b/.github/scripts/ci-test-stdlib.sh @@ -20,24 +20,12 @@ 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 - "Random" - "LazyArtifacts" -) - # These tests need multiple workers. declare -a tests_with_multi_workers=( "Pkg" @@ -77,14 +65,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 From ff3b82a093efc23a5d084043e28349aa4b19238b Mon Sep 17 00:00:00 2001 From: Eduardo Souza Date: Mon, 15 Sep 2025 06:03:29 +0000 Subject: [PATCH 2/2] Skipping Pkg tests again --- .github/scripts/ci-test-stdlib.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/scripts/ci-test-stdlib.sh b/.github/scripts/ci-test-stdlib.sh index 45777ec..8f21ddc 100755 --- a/.github/scripts/ci-test-stdlib.sh +++ b/.github/scripts/ci-test-stdlib.sh @@ -24,6 +24,10 @@ declare -a tests_to_skip=( "LinearAlgebra" # Skipping Distributed tests "Distributed" + # 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.