summary refs log tree commit diff stats
path: root/tests/testament/tester.nim
Commit message (Collapse)AuthorAgeFilesLines
* pass nim path to subprocess testament (#6779)Jacek Sieka2017-11-191-1/+4
|
* use targets from test spec when running testament tests (#6687)Jacek Sieka2017-11-151-100/+102
|
* fixes a tester regressionAndreas Rumpf2017-11-061-3/+2
|
* pass on testament args to sub-process (#6688)Jacek Sieka2017-11-061-2/+9
|
* attempt to fix the tester; tests should be red nowAraq2017-10-311-8/+5
|
* made 'testament all' run in parallelAraq2017-10-251-3/+7
|
* testament: no sqlite or re dependencies anymoreAraq2017-10-251-11/+11
|
* Implement .nimble-link files in the compiler and add tests for them.Dominik Picheta2017-09-021-1/+0
|
* Add readme to tests. Add fileDir option to testament & create nimble test.Dominik Picheta2017-09-021-2/+10
|
* tester: better error message comparisonsAndreas Rumpf2017-08-311-1/+1
|
* tester: make 'nimout' matching more robust against whitespace issuesAndreas Rumpf2017-08-311-1/+5
|
* review and merge zahary's work (#5849)zah2017-06-031-9/+19
| | | | | | | | | * proper indentation for the generated JS code * improved dead-code elimination for JavaScript * test the JS dead-code elimination A new test spec has been added - "maxcodesize". It specifies the maximum size of the generated code in bytes.
* compiler option for testament (#5713)Jacek Sieka2017-05-151-2/+4
| | | | | | * compiler option for testament * different spacing
* further improvements to the error messages produced by conceptsZahary Karadjov2017-03-241-3/+3
|
* proper error reporting for concepts and the introduction of the {.explain.} ↵Zahary Karadjov2017-03-241-0/+4
| | | | pragma
* testament: be verbose when --pedantic failsAndreas Rumpf2017-02-031-1/+3
|
* make tests on Windows green under --pedanticAraq2017-02-021-10/+9
|
* Run Option: use now processSingleTestWh1teDuke2016-09-191-1/+1
|
* Treat all failure codes from nodejs as 1Yuriy Glukhov2016-08-271-0/+5
|
* sets don't support empty arrays :)cheatfate2016-07-301-1/+1
|
* Enable coroutines again.cheatfate2016-07-301-1/+1
|
* commentscheatfate2016-07-301-1/+1
|
* testament update to have list of disabled modules.cheatfate2016-07-301-1/+5
|
* added 'koch testinstall' command; more installer related bugfixesAndreas Rumpf2016-06-091-0/+1
|
* Merge pull request #4049 from arnetheduck/tester-targetsAndreas Rumpf2016-04-071-0/+10
|\ | | | | tester: allow filtering tests by target
| * untaint command line option for parsingJacek Sieka2016-04-061-1/+1
| |
| * tester: allow filtering tests by targetJacek Sieka2016-04-051-0/+10
| |
* | Prevent tester from checking for output diffs for actionRunNoSpec.Dominik Picheta2016-04-051-1/+1
|/
* compiler/msgs: Default to stderr for diagnosticsAdam Strzelecki2015-10-161-1/+2
| | | | | | | | | | | | Previously we were defaulting to stdout for diagnostics, which could interfere with scripts or `nim c -r' programs outputting their results to stdout, possibly mixing their output with compiler messages. This change makes now Nim to be inline with other compilers emitting diagnostics to stderr. Also now --stdout option has proper meaning making all diagnostics to be sent to stdout instead. NOTE: Tester now calls compiler with --stdout.
* Merge remote-tracking branch 'origin/devel' into appveyorAman Gupta2015-10-131-5/+5
|\
| * udpated the compiler and tester to use getOrDefaultAraq2015-10-131-5/+5
| |
* | skip sdl/opengl/fsmonitor tests when unavailableAman Gupta2015-10-081-0/+6
| |
* | show failure codeAman Gupta2015-10-081-1/+1
| |
* | standardize on forward slashes for pathsAman Gupta2015-10-071-1/+1
| |
* | framework is requiredAman Gupta2015-10-071-1/+1
| |
* | fix compile errorAman Gupta2015-10-071-1/+1
| |
* | collect any output of appveyor commandAman Gupta2015-10-071-1/+3
| |
* | report duration to appveyor runnerAman Gupta2015-10-071-3/+5
| |
* | use category as filename, and full filename in test nameAman Gupta2015-10-071-1/+1
| |
* | clean up whitespace on error msgAman Gupta2015-10-071-1/+1
| |
* | tie into appveyor test results apiAman Gupta2015-10-071-0/+10
|/
* add tfile/tline assertions for template expansion file/lineAman Gupta2015-10-061-1/+22
|
* show stderr w/ reExitcodesDifferAman Gupta2015-10-021-1/+1
|
* show full compiler output with reNimcCrashAman Gupta2015-09-301-0/+2
|
* allow testament/tester to run single fileAman Gupta2015-09-301-0/+6
|
* tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-2/+2
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* Revert from columnar layout. Remove temp-fix for 2857.Oscar Campbell2015-06-101-12/+6
|
* Treat unitest's default esc.seq. output as empty.Oscar Campbell2015-06-041-5/+8
|
* Add "safety compilation". Improved, fixed messagesOscar Campbell2015-06-041-53/+93
| | | | | | | | - node ext searcher also looks for "iojs" if no node(js?) found. - koch ensures the local work dir compiler is freshly compiled before executing the tests. - the tester can only run in the repo dir - now the compiler and libs used are also explicitly the local dirs - so no confusion from system wide pathing ("sufficiently sandboxed"). - fixed expectations in tmitems.nim test to match changes in json mod. - re-layouted the columns / row printing slightly, making test fails pop out more, and everything "normal" layed back.
* Introduce pedantic mode for testerSergey Avseyev2015-05-251-1/+6
| | | | | | | | | | | | | | | | | | | | | | | Motivation ---------- External tools need to know whether or not any test in suite failed. For example buildbot, or packaging tool would like to stop the execution and mark it as failed if some tests does not pass. Modification ------------ Add `--pedantic` switch to tester program which will force it to quit with non-zero exit code if at least one failure detected. Also update `tests()` proc in koch to inspect result from tester and propagate it to user. Result ------ Nothing has changed in default behaviour. But following invocations will exit with non-zero code if there failed tests: ./koch tests --pedantic all ./tests/testament/tester --pedantic all