Skip to content

Commit

Permalink
reorg compiler tests (#30280)
Browse files Browse the repository at this point in the history
- compiler/compiler => compiler/inference
- move codegen and inline tests to compiler/ directory
  • Loading branch information
JeffBezanson authored Dec 6, 2018
1 parent 9b6eb0d commit 4e97220
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/choosetests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ function choosetests(choices = [])
"some", "meta", "stacktraces", "docs",
"misc", "threads", "stress",
"enums", "cmdlineargs", "int",
"checked", "bitset", "floatfuncs", "precompile", "inline",
"checked", "bitset", "floatfuncs", "precompile",
"boundscheck", "error", "ambiguous", "cartesian", "osutils",
"channels", "iostream", "secretbuffer", "specificity", "codegen",
"channels", "iostream", "secretbuffer", "specificity",
"reinterpretarray", "syntax", "logging", "missing", "asyncmap"
]

Expand Down Expand Up @@ -107,7 +107,8 @@ function choosetests(choices = [])
prepend!(tests, ["subarray"])
end

compilertests = ["compiler/compiler", "compiler/validation", "compiler/ssair", "compiler/irpasses"]
compilertests = ["compiler/inference", "compiler/validation", "compiler/ssair", "compiler/irpasses",
"compiler/codegen", "compiler/inline"]

if "compiler" in skip_tests
filter!(x -> (x != "compiler" && !(x in compilertests)), tests)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 4e97220

Please sign in to comment.