Skip to content

Commit 9d00b57

Browse files
serenity4KristofferC
andauthored
Run Compiler tests in parallel for Pkg.test, continued (#57987)
Co-authored-by: KristofferC <kristoffer.carlsson@juliacomputing.com> Co-authored-by: Cédric Belmant <cedric.belmant@juliahub.com>
1 parent 4a3eba3 commit 9d00b57

16 files changed

+35
-7
lines changed

Compiler/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Manifest.toml

Compiler/test/AbstractInterpreter.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
using Test
44

5+
include("setup_Compiler.jl")
56
include("irutils.jl")
67
include("newinterp.jl")
78

Compiler/test/EscapeAnalysis.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module test_EA
22

3+
include("setup_Compiler.jl")
34
include("irutils.jl")
45

56
const EscapeAnalysis = Compiler.EscapeAnalysis

Compiler/test/compact.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
using Test
44

5+
include("setup_Compiler.jl")
56
include("irutils.jl")
67

78
using .Compiler: IncrementalCompact, insert_node_here!, finish,

Compiler/test/contextual.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# N.B.: This file is also run from interpreter.jl, so needs to be standalone-executable
44
using Test
5+
56
include("setup_Compiler.jl")
67

78
# Cassette

Compiler/test/effects.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
using Test
4+
5+
include("setup_Compiler.jl")
46
include("irutils.jl")
57

68
# Test that the Core._apply_iterate bail path taints effects

Compiler/test/inference.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module inference
44

55
using Test
66

7+
include("setup_Compiler.jl")
78
include("irutils.jl")
89

910
# tests for Compiler correctness and precision

Compiler/test/inline.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ using Test
44
using Base.Meta
55
using Core: ReturnNode
66

7+
include("setup_Compiler.jl")
78
include("irutils.jl")
89
include("newinterp.jl")
910

Compiler/test/invalidation.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# setup
44
# -----
55

6+
include("setup_Compiler.jl")
67
include("irutils.jl")
78

89
using Test

Compiler/test/irpasses.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ using Test
44
using Base.Meta
55
using Core.IR
66

7+
include("setup_Compiler.jl")
78
include("irutils.jl")
89

910
# domsort

0 commit comments

Comments
 (0)