diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-05-26 00:41:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-26 09:41:50 +0200 |
commit | b59dc3b255d778cefdbef2c0c3ff55d43892c11c (patch) | |
tree | e108d2c05aca997ab34d05d3920574a70420ec8f /testament/categories.nim | |
parent | 478f717377c4cd60cfce112b8b21d58031b118b4 (diff) | |
download | Nim-b59dc3b255d778cefdbef2c0c3ff55d43892c11c.tar.gz |
remove some custom logic in testament around flags, testExec (#18090)
* remove some custom logic in testament around flags, testExec * remove testExec, custom logic around flags from testament * fixup
Diffstat (limited to 'testament/categories.nim')
-rw-r--r-- | testament/categories.nim | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/testament/categories.nim b/testament/categories.nim index 28ede1ba0..510e90c53 100644 --- a/testament/categories.nim +++ b/testament/categories.nim @@ -23,7 +23,6 @@ const "debugger", "dll", "examples", - "flags", "gc", "io", "js", @@ -48,26 +47,6 @@ proc isTestFile*(file: string): bool = let (_, name, ext) = splitFile(file) result = ext == ".nim" and name.startsWith("t") -# --------------------- flags tests ------------------------------------------- - -proc flagTests(r: var TResults, cat: Category, options: string) = - # --genscript - const filename = testsDir/"flags"/"tgenscript" - const genopts = " --genscript" - let nimcache = nimcacheDir(filename, genopts, targetC) - testSpec r, makeTest(filename, genopts, cat) - - when defined(windows): - testExec r, makeTest(filename, " cmd /c cd " & nimcache & - " && compile_tgenscript.bat", cat) - - elif defined(posix): - testExec r, makeTest(filename, " sh -c \"cd " & nimcache & - " && sh compile_tgenscript.sh\"", cat) - - # Run - testExec r, makeTest(filename, " " & nimcache / "tgenscript", cat) - # --------------------- DLL generation tests ---------------------------------- proc runBasicDLLTest(c, r: var TResults, cat: Category, options: string) = @@ -705,8 +684,6 @@ proc processCategory(r: var TResults, cat: Category, jsTests(r, cat, options) of "dll": dllTests(r, cat, options) - of "flags": - flagTests(r, cat, options) of "gc": gcTests(r, cat, options) of "longgc": |