summary refs log tree commit diff stats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Closes #6083, closes #6086, closes #6379 (#6392)Daniil Yarancev2017-09-161-8/+58
|
* Reorder json `add` and `%`, fixes #6385 (#6388)Mamy Ratsimbazafy2017-09-162-0/+15
| | | | | | * Reorder json `add` and `%`, fixes https://github.com/nim-lang/Nim/issues/6385 * rename json test files
* Fix operations on string as openarray in VM. (#6257)Parashurama2017-09-151-0/+34
| | | | | | | | | | * fix openarray.len for string as openArray in VM. * fix openarray[idx] for string as openArray in VM. * fix openarray[idx]=val for string as openArray in VM. * add tests for passing string as openArray in VM. * fix issue with NimNode.len NimNode.len was also returning len for string literals. also fix logic bug in if/elif chain.
* Changed JSON stringification to preserve UTF (#6330)Yuriy Glukhov2017-09-151-1/+1
|
* Add counterpart to containsOrIncl for excl (#6360)superfunc2017-09-151-1/+11
|
* Fix wrong result of countLines() (#6371)Simon Krauter2017-09-151-0/+12
|
* Add test for objvariant construction ordersuperfunc2017-09-091-0/+114
| | | | Fixes #4665
* attempt to make travis green againAraq2017-09-051-14/+18
|
* fixes #6327Andreas Rumpf2017-09-051-0/+2
|
* fixes #6294Araq2017-09-051-1/+37
|
* equality check on NimSym has now support in the VM; refs #6139Araq2017-09-031-1/+24
|
* Fix seq.setLen initialisation in VM (#6224)Parashurama2017-09-021-0/+58
|
* Implement .nimble-link files in the compiler and add tests for them.Dominik Picheta2017-09-025-1/+15
|
* Add readme to tests. Add fileDir option to testament & create nimble test.Dominik Picheta2017-09-0216-15/+92
|
* closes #3583Andreas Rumpf2017-09-011-1/+9
|
* tester: better error message comparisonsAndreas Rumpf2017-08-311-1/+1
|
* make tests green againAndreas Rumpf2017-08-311-4/+4
|
* tester: make 'nimout' matching more robust against whitespace issuesAndreas Rumpf2017-08-311-1/+5
|
* Fix #6295 (#6296)BigEpsilon2017-08-301-0/+13
|
* fixes #6279Andreas Rumpf2017-08-292-1/+13
|
* remove ArrayDummySize with unchecked arrays (#5818)Jacek Sieka2017-08-282-2/+6
|
* add testcase for mitems returning tuple on VM.Parashurama2017-08-191-0/+14
|
* Restore the old behavior of parsing "quote do:"Zahary Karadjov2017-08-193-187/+222
| | | | close #5845
* treat var modifiers inside the concept body correctly: #1033Zahary Karadjov2017-08-191-0/+30
|
* Fixes #5965 (#6237)Daniil Yarancev2017-08-142-0/+20
|
* Fix typo (#6236)Daniil Yarancev2017-08-121-1/+1
|
* fixes #6234Andreas Rumpf2017-08-111-0/+22
|
* reorder pass: consider the 'using' statement; disabled debug outputAndreas Rumpf2017-08-111-4/+8
|
* Introduce first class support for Android (#5772)Fredrik Høisæther Rasch2017-08-062-2/+6
|
* Removed platform-specific arithm test cases (#6189)Fredrik Høisæther Rasch2017-08-061-11/+11
|
* disable tboehmdeepcopy for Windows as we don't have a version of Boehm GC on ↵Araq2017-08-041-0/+1
| | | | Windows
* fixes #6016 union alias trigger bad codegen (#6117)andri lim2017-08-035-141/+175
| | | | | | * fixes #6016 union alias trigger bad codegen * cpp test ok * merging some test into one file
* Vm fix zero extend proc ze/ze64 && toU32/toU16/toU8 (#5988)Parashurama2017-08-031-0/+44
| | | | | | * fixes ze/ze64 procs in VM. * fixes toU8/toU16/toU32. * add tests for ze/ze64 toU32/toU16/toU8 procs
* Channels can now block depending on maxItems (#6153)Yuriy Glukhov2017-07-311-0/+37
|
* Fixed NimTypeKind enum, added missing values. (#6157)Yuriy Glukhov2017-07-301-0/+7
|
* distinguish between 'reorder' and 'noforward'Andreas Rumpf2017-07-261-0/+42
|
* Added codeRepr and dumpCode to the macros module. (#5778)PMunch2017-07-261-0/+25
|
* Remove expr/stmt (#5857)Arne Döring2017-07-25137-418/+390
|
* closures have an object type field so that we can perform correct deepCopy() ↵Andreas Rumpf2017-07-221-0/+17
| | | | for the BoehmGC target
* make tests green againAraq2017-07-201-5/+2
|
* fixes #5871Andreas Rumpf2017-07-201-3/+14
|
* fixes #5892Araq2017-07-171-0/+19
|
* fixes #4763Araq2017-07-171-0/+32
|
* Lineinfo change (#6084)Arne Döring2017-07-174-4/+4
|
* fixes #5986 js backend failed to compile try ... except new syntax (#6116)andri lim2017-07-171-0/+13
|
* fixes #6049 add mixin release, acquire to withLock (#6113)andri lim2017-07-162-0/+21
|
* Fixes #5738 (#6059)Yuriy Glukhov2017-07-152-0/+66
|
* Merge pull request #5938 from zielmicha/futuresDominik Picheta2017-07-142-0/+21
|\ | | | | [WIP] Better Future
| * Future: support for multiple callbacksMichał Zieliński2017-07-051-0/+20
| |
| * asyncdispatch: split asyncfutures into its own moduleMichał Zieliński2017-07-051-0/+1
| | | | | | | | This slightly changes behaviour of callSoon - before loop is initialized, callSoon will call the function immediately.