From d239be296e428d81df72a127bcf39d8bb818663d Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Thu, 1 Aug 2024 02:53:23 +0200 Subject: [PATCH] Smoke test /base and /test from JuliaLang/julia --- test/runtests.jl | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/test/runtests.jl b/test/runtests.jl index 97e5fb9..5d0d50c 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -933,3 +933,30 @@ end "begin\n $(otriple)\n a\\\n b\n $(ctriple)\nend" end end + + +const share_julia = joinpath(Sys.BINDIR, Base.DATAROOTDIR, "julia") +if Sys.isunix() && isdir(share_julia) + @testset "JuliaLang/julia" begin + for testfolder in joinpath.(share_julia, ("base", "test")) + for (root, _, files) in walkdir(testfolder) + for file in files + endswith(file, ".jl") || continue + path = joinpath(root, file) + try + Runic.format_file(path, "/dev/null") + @test true + catch err + if err isa JuliaSyntax.ParseError + @warn "JuliaSyntax.ParseError for $path" err + @test_broken false + else + @error "Error when formatting file $path" + @test false + end + end + end + end + end + end +end