summary refs log tree commit diff stats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* better test programAraq2015-06-141-4/+49
|
* Merge pull request #2903 from yglukhov/js-bracket-addrAndreas Rumpf2015-06-131-0/+22
|\ | | | | Fixed addr of bracket expression. Fixes #2148.
| * Fixed addr of bracket expression. Fixes #2148.yglukhov2015-06-111-0/+22
| |
* | Non-base10 overflow allowed if bit-stable. Tests.Oscar Campbell2015-06-121-0/+68
| |
* | Merge pull request #2894 from nanoant/patch/macros-real-node-compareAndreas Rumpf2015-06-121-0/+39
|\ \ | | | | | | Real node compare for macros
| * | macros: Add test for node comparsionAdam Strzelecki2015-06-101-0/+39
| | |
* | | Merge pull request #2902 from yglukhov/js-copying-fixAndreas Rumpf2015-06-121-0/+13
|\ \ \ | | | | | | | | Fixed copying of aggregates in JS.
| * | | Fixed copying of aggregates in JS.yglukhov2015-06-111-0/+13
| | |/ | |/|
* | | Merge pull request #2818 from flaviut/add-nreAndreas Rumpf2015-06-1210-0/+245
|\ \ \ | |/ / |/| | Add nre to stdlib
| * | Fix nre testsFlaviu Tamas2015-06-071-1/+1
| | |
| * | Merge branch 'devel' of https://github.com/Araq/Nim into add-nreFlaviu Tamas2015-06-0713-18/+124
| |\| | | | | | | | | | | | | | | | * 'devel' of https://github.com/Araq/Nim: Fix #964, fix #1384 Don't inspect typedescs
| * | Rearrange nre filesFlaviu Tamas2015-05-2610-0/+245
| | |
* | | Revert from columnar layout. Remove temp-fix for 2857.Oscar Campbell2015-06-101-12/+6
| | |
* | | Merge branch 'devel' into bugfix-2858-testament-sources-system-wideOscar Campbell2015-06-078-12/+49
|\ \ \ | | |/ | |/|
| * | Merge pull request #2867 from Araq/fix-2584Andreas Rumpf2015-06-075-8/+8
| |\ \ | | | | | | | | Fixes #2584
| | * | s/procedure/routine/ in tests.Dominik Picheta2015-06-054-4/+4
| | | |
| | * | Got rid of errUndeclaredProcedureField.Dominik Picheta2015-06-041-1/+1
| | | |
| | * | Fixes #2584Dominik Picheta2015-06-045-8/+8
| | | | | | | | | | | | | | | | | | | | Better compiler errors for accessing undeclared fields, calling undeclared procedures and procedure fields.
| * | | fixes #2774Araq2015-06-061-0/+14
| | | |
| * | | fixes #2854Araq2015-06-061-0/+26
| | | |
| * | | Merge pull request #2824 from yglukhov/js-ct-lambda-liftingAndreas Rumpf2015-06-051-4/+1
| |\ \ \ | | |/ / | |/| | Perform lambda lifting for compile-time stuff when targeting JS.
| | * | Perform lambda lifting for compile-time stuff when targeting JS. Enable ↵yglukhov2015-05-291-4/+1
| | | | | | | | | | | | | | | | unittest test.
* | | | Treat unitest's default esc.seq. output as empty.Oscar Campbell2015-06-041-5/+8
| | | |
* | | | Merge branch 'devel' into bugfix-2858-testament-sources-system-wideOscar Campbell2015-06-041-1/+4
|\| | |
| * | | Fixed codegen for DotDot magicyglukhov2015-06-041-1/+4
| | | |
* | | | Add "safety compilation". Improved, fixed messagesOscar Campbell2015-06-042-55/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* | | | Made pathing (hopefully) Windows friendly.Oscar Campbell2015-06-031-1/+1
| | | |
* | | | Ensure fresh compiler and local compiler + libsOscar Campbell2015-06-031-1/+1
|/ / /
* / / added missing testAraq2015-05-281-0/+35
|/ /
* | Enabled taddr and testobjs testsyglukhov2015-05-272-5/+15
| |
* | Fix #964, fix #1384Flaviu Tamas2015-05-261-0/+16
| | | | | | | | | | Doesn't actually fix those bugs, but they can no longer be reproduced. Test cases have been added.
* | Don't inspect typedescsFlaviu Tamas2015-05-261-0/+5
|/
* Fixes #2798yglukhov2015-05-261-0/+20
|
* 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
* Macros: Introduce getType(t: typedesc): NimNodeAdam Strzelecki2015-05-171-0/+20
| | | | | | | | | | | | | Since typedesc are exception in macros and they are not implicitly converted to NimNode on macro call, we need some means to perform such conversion on demand. Fortunately it is as simple as declaring new magic "NGetType" proc with typedesc parameter. NOTE: Keeping actual macro exceptional behavior for typedesc is important, since it allows passing typedesc macro parameter to other procs or macros expecting type parameter. If typedesc parameter was implicitly converted, then we would lost this ability.
* Merge pull request #2564 from reactormonk/jpoirier-realtimeGCTestAndreas Rumpf2015-05-149-2/+260
|\ | | | | Jpoirier realtime gc test
| * run the C test tooSimon Hafner2015-05-132-2/+2
| |
| * Merge branch 'devel' into jpoirier-realtimeGCTestSimon Hafner2015-05-1371-242/+2030
| |\
| * | integrated realtimegc stuff into testamentSimon Hafner2015-04-137-38/+78
| | |
| * | 15 minutes, bit better messagesSimon Hafner2015-04-043-8/+8
| | |
| * | Merge branch 'devel' into jpoirier-realtimeGCTestSimon Hafner2015-04-0112-25/+179
| |\ \
| * \ \ Merge branch 'realtimeGCTest' of https://github.com/jpoirier/Nim into ↵Simon Hafner2015-03-268-1/+219
| |\ \ \ | | | | | | | | | | | | | | | jpoirier-realtimeGCTest
| | * | | proper windows get process function name, fix batch file, add echoes backJoseph Poirier2015-01-083-4/+5
| | | | |
| | * | | add test note to the readmeJoseph Poirier2015-01-061-1/+4
| | | | |
| | * | | add proper cdm strings and comment out all echosJoseph Poirier2015-01-062-10/+10
| | | | |
| | * | | properly typecast the function pointersJoseph Poirier2015-01-061-3/+3
| | | | |
| | * | | fixed import object nameJoseph Poirier2015-01-061-3/+3
| | | | |
| | * | | Test the realtime GC, via long running process in a shared object, without ↵Joseph Poirier2015-01-067-0/+214
| | | | | | | | | | | | | | | | | | | | linking nimrtl.dll/so.
* | | | | Tests for static class proc, methods & iteratorsAdam Strzelecki2015-05-131-0/+19
| |_|_|/ |/| | | | | | | | | | | This currently covers #2662 & #2710 bugs.
* | | | Merge pull request #2660 from MrJohz/contains-tablesAndreas Rumpf2015-05-082-15/+19
|\ \ \ \ | | | | | | | | | | Add contains proc for tables to allow usage of `in`