From f17f7a800d94a46c886ec1f7e5a608ad7f0edd08 Mon Sep 17 00:00:00 2001 From: Jeff Bezanson Date: Mon, 28 Sep 2020 18:24:48 -0400 Subject: [PATCH] try to get more info on Test failure --- stdlib/Test/src/Test.jl | 2 ++ test/choosetests.jl | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/stdlib/Test/src/Test.jl b/stdlib/Test/src/Test.jl index 0d0abaef1d38b..75c9ccb4c57a9 100644 --- a/stdlib/Test/src/Test.jl +++ b/stdlib/Test/src/Test.jl @@ -1114,6 +1114,7 @@ function testset_beginend(args, tests, source) end catch err err isa InterruptException && rethrow() + Base.display_error(Base.catch_stack()) # something in the test block threw an error. Count that as an # error in this test set record(ts, Error(:nontest_error, Expr(:tuple), err, Base.catch_stack(), $(QuoteNode(source)))) @@ -1188,6 +1189,7 @@ function testset_forloop(args, testloop, source) $(esc(tests)) catch err err isa InterruptException && rethrow() + Base.display_error(Base.catch_stack()) # Something in the test block threw an error. Count that as an # error in this test set record(ts, Error(:nontest_error, Expr(:tuple), err, Base.catch_stack(), $(QuoteNode(source)))) diff --git a/test/choosetests.jl b/test/choosetests.jl index 887814c6bab0a..58a4adc9ac995 100644 --- a/test/choosetests.jl +++ b/test/choosetests.jl @@ -37,7 +37,7 @@ function choosetests(choices = []) "keywordargs", "numbers", "subtype", "char", "strings", "triplequote", "unicode", "intrinsics", "dict", "hashing", "iobuffer", "staged", "offsetarray", - "arrayops", "tuple", "reduce", "reducedim", "abstractarray", + "arrayops", "tuple", "reduce", "reducedim", "intfuncs", "simdloop", "vecelement", "rational", "bitarray", "copy", "math", "fastmath", "functional", "iterators", "operators", "ordering", "path", "ccall", "parse", "loading", "gmp",