Skip to content

Commit ba4b1b7

Browse files
committed
test: print which test finished (drop me)
1 parent e261d0f commit ba4b1b7

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

test/runtests.jl

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,30 +13,53 @@ const REACTANT_TEST_GROUP = lowercase(get(ENV, "REACTANT_TEST_GROUP", "all"))
1313
end
1414

1515
@safetestset "Layout" include("layout.jl")
16+
@info "Layout tests finished"
1617
@safetestset "Tracing" include("tracing.jl")
18+
@info "Tracing tests finished"
1719
@safetestset "Basic" include("basic.jl")
20+
@info "Basic tests finished"
1821
@safetestset "Constructor" include("constructor.jl")
22+
@info "Constructor tests finished"
1923
@safetestset "Autodiff" include("autodiff.jl")
24+
@info "Autodiff tests finished"
2025
@safetestset "Complex" include("complex.jl")
26+
@info "Complex tests finished"
2127
@safetestset "Broadcast" include("bcast.jl")
28+
@info "Broadcast tests finished"
2229
@safetestset "Struct" include("struct.jl")
30+
@info "Struct tests finished"
2331
@safetestset "Closure" include("closure.jl")
32+
@info "Closure tests finished"
2433
@safetestset "Compile" include("compile.jl")
34+
@info "Compile tests finished"
2535
@safetestset "IR" include("ir.jl")
36+
@info "IR tests finished"
2637
@safetestset "Buffer Donation" include("buffer_donation.jl")
38+
@info "Buffer Donation tests finished"
2739
@safetestset "Shortcuts to MLIR ops" include("ops.jl")
40+
@info "Shortcuts to MLIR ops tests finished"
2841
@safetestset "Wrapped Arrays" include("wrapped_arrays.jl")
42+
@info "Wrapped Arrays tests finished"
2943
@safetestset "Control Flow" include("control_flow.jl")
44+
@info "Control Flow tests finished"
3045
@safetestset "Sorting" include("sorting.jl")
46+
@info "Sorting tests finished"
3147
@safetestset "Indexing" include("indexing.jl")
48+
@info "Indexing tests finished"
3249
if !Sys.isapple()
3350
@safetestset "Custom Number Types" include("custom_number_types.jl")
51+
@info "Custom Number Types tests finished"
3452
end
3553
@safetestset "Sharding" include("sharding.jl")
54+
@info "Sharding tests finished"
3655
@safetestset "Comm Optimization" include("optimize_comm.jl")
56+
@info "Comm Optimization tests finished"
3757
@safetestset "Cluster Detection" include("cluster_detector.jl")
58+
@info "Cluster Detection tests finished"
3859
@safetestset "Config" include("config.jl")
60+
@info "Config tests finished"
3961
@safetestset "Batching" include("batching.jl")
62+
@info "Batching tests finished"
4063
end
4164

4265
if REACTANT_TEST_GROUP == "all" || REACTANT_TEST_GROUP == "integration"

0 commit comments

Comments
 (0)