Araq 5091599822 merged branches | vor 7 Jahren | |
---|---|---|
.. | ||
actiontable | vor 9 Jahren | |
alias | vor 7 Jahren | |
ambsym | vor 9 Jahren | |
arithm | vor 7 Jahren | |
array | vor 7 Jahren | |
assert | vor 7 Jahren | |
assign | vor 9 Jahren | |
astoverload | vor 11 Jahren | |
async | vor 7 Jahren | |
benchmarks | vor 9 Jahren | |
bind | vor 7 Jahren | |
borrow | vor 9 Jahren | |
caas | vor 9 Jahren | |
casestmt | vor 7 Jahren | |
ccgbugs | vor 7 Jahren | |
clearmsg | vor 7 Jahren | |
closure | vor 7 Jahren | |
cnstseq | vor 9 Jahren | |
collections | vor 7 Jahren | |
compiles | vor 7 Jahren | |
concat | vor 11 Jahren | |
concepts | vor 7 Jahren | |
constr | vor 7 Jahren | |
constraints | vor 9 Jahren | |
constructors | vor 7 Jahren | |
controlflow | vor 9 Jahren | |
converter | vor 8 Jahren | |
coroutines | vor 7 Jahren | |
cpp | vor 7 Jahren | |
defaultprocparam | vor 11 Jahren | |
deprecated | vor 9 Jahren | |
destructor | vor 7 Jahren | |
dir with space | vor 9 Jahren | |
discard | vor 7 Jahren | |
distinct | vor 8 Jahren | |
dll | vor 9 Jahren | |
effects | vor 7 Jahren | |
enum | vor 7 Jahren | |
errmsgs | vor 7 Jahren | |
exception | vor 7 Jahren | |
exprs | vor 7 Jahren | |
fields | vor 7 Jahren | |
float | vor 7 Jahren | |
friends | vor 9 Jahren | |
gc | vor 7 Jahren | |
generics | vor 7 Jahren | |
gensym | vor 7 Jahren | |
global | vor 9 Jahren | |
implicit | vor 10 Jahren | |
import_in_config | vor 8 Jahren | |
init | vor 9 Jahren | |
iter | vor 7 Jahren | |
js | vor 7 Jahren | |
let | vor 9 Jahren | |
lexer | vor 7 Jahren | |
lookups | vor 8 Jahren | |
macros | vor 7 Jahren | |
magics | vor 7 Jahren | |
manyloc | vor 7 Jahren | |
metatype | vor 7 Jahren | |
method | vor 7 Jahren | |
misc | vor 7 Jahren | |
modules | vor 7 Jahren | |
namedparams | vor 9 Jahren | |
newconfig | vor 7 Jahren | |
nimble | vor 7 Jahren | |
niminaction | vor 7 Jahren | |
notnil | vor 7 Jahren | |
objects | vor 7 Jahren | |
objvariant | vor 7 Jahren | |
openarray | vor 9 Jahren | |
osproc | vor 7 Jahren | |
overflw | vor 9 Jahren | |
overload | vor 7 Jahren | |
parallel | vor 7 Jahren | |
parser | vor 7 Jahren | |
pragmas | vor 7 Jahren | |
proc | vor 9 Jahren | |
procvar | vor 9 Jahren | |
range | vor 7 Jahren | |
rational | vor 9 Jahren | |
realtimeGC | vor 9 Jahren | |
rodfiles | vor 8 Jahren | |
seq | vor 8 Jahren | |
sets | vor 7 Jahren | |
showoff | vor 7 Jahren | |
specialops | vor 7 Jahren | |
statictypes | vor 7 Jahren | |
stdlib | vor 7 Jahren | |
system | vor 7 Jahren | |
template | vor 7 Jahren | |
testament | vor 7 Jahren | |
testdata | vor 8 Jahren | |
threads | vor 7 Jahren | |
trmacros | vor 7 Jahren | |
tuples | vor 7 Jahren | |
typerel | vor 7 Jahren | |
types | vor 7 Jahren | |
untestable | vor 7 Jahren | |
usingstmt | vor 7 Jahren | |
varres | vor 7 Jahren | |
varstmt | vor 9 Jahren | |
vm | vor 7 Jahren | |
benchmark.nim | vor 9 Jahren | |
js.html | vor 11 Jahren | |
js.nim | vor 9 Jahren | |
mmaptest.nim | vor 9 Jahren | |
readme.md | vor 7 Jahren | |
rectest.nim | vor 9 Jahren | |
stckovfl.nim | vor 9 Jahren | |
test_nimscript.nims | vor 8 Jahren |
This directory contains the test cases.
Each test must have a filename of the form: t*.nim
Note: Tests are only compiled by default. In order to get the tester to
execute the compiled binary, you need to specify a spec with an action
key
(see below for details).
Each test can contain a spec in a discard """ ... """
block.
Check out the parseSpec
procedure in the specs
module for a full and reliable reference
Specifies what action this test should take.
Default: compile
Options:
compile
- compiles the module and fails the test if compilations fails.run
- compiles and runs the module, fails the test if compilation or
execution of test code fails.reject
- compiles the module and fails the test if compilation succeeds.There are certain spec keys that imply run
, including output
and
outputsub
.
Specifies the Nim command to use for compiling the test.
There are a number of variables that are replaced in this spec option:
$target
- the compilation target, e.g. c
.$options
- the options for the compiler.$file
- the filename of the test.$filedir
- the directory of the test file.Example:
discard """
cmd: "nim $target --nimblePath:./nimbleDir/simplePkgs $options $file"
"""
Each folder under this directory represents a test category, which can be
tested by running koch tests cat <category>
.
The folder rodfiles
contains special tests that test incremental
compilation via symbol files.
The folder dll
contains simple DLL tests.
The folder realtimeGC
contains a test for validating that the realtime GC
can run properly without linking against the nimrtl.dll/so. It includes a C
client and platform specific build files for manual compilation.