From 6804e9f5feef700f199b2ec8bb5d4e6e5159b17f Mon Sep 17 00:00:00 2001 From: Stefan Krastanov Date: Thu, 12 Sep 2024 09:14:25 -0400 Subject: [PATCH] simplify jet tests --- test/test_jet.jl | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/test/test_jet.jl b/test/test_jet.jl index 9fea8ff..cad1e53 100644 --- a/test/test_jet.jl +++ b/test/test_jet.jl @@ -2,30 +2,13 @@ using ResumableFunctions using JET using Test -using JET: ReportPass, BasicPass, InferenceErrorReport, UncaughtExceptionReport - -# Custom report pass that ignores `UncaughtExceptionReport` -# Too coarse currently, but it serves to ignore the various -# "may throw" messages for runtime errors we raise on purpose -# (mostly on malformed user input) -struct MayThrowIsOk <: ReportPass end - -# ignores `UncaughtExceptionReport` analyzed by `JETAnalyzer` -(::MayThrowIsOk)(::Type{UncaughtExceptionReport}, @nospecialize(_...)) = return - -# forward to `BasicPass` for everything else -function (::MayThrowIsOk)(report_type::Type{<:InferenceErrorReport}, @nospecialize(args...)) - BasicPass()(report_type, args...) -end - @testset "JET checks" begin rep = report_package("ResumableFunctions"; - report_pass=MayThrowIsOk(), ignored_modules=( Core.Compiler, ) ) @show rep - @test length(JET.get_reports(rep)) <= 6 + @test length(JET.get_reports(rep)) <= 5 @test_broken length(JET.get_reports(rep)) == 0 end