From 9ac5582580cbfafe61b6568efe6e6a9bf5ac3c4c Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sun, 31 Oct 2021 19:43:28 -0400 Subject: [PATCH] Test suite: improve the warning that we print when we skip the `Profile` tests on ARM (#42862) --- test/choosetests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/choosetests.jl b/test/choosetests.jl index e81e82cee237e..4c56c8c373ac9 100644 --- a/test/choosetests.jl +++ b/test/choosetests.jl @@ -137,7 +137,7 @@ function choosetests(choices = []) if startswith(string(Sys.ARCH), "arm") # Remove profile from default tests on ARM since it currently segfaults # Allow explicitly adding it for testing - @warn "Skipping Profile tests" + @warn "Skipping Profile tests because the architecture is ARM" filter!(x -> (x != "Profile"), tests) end