summary refs log tree commit diff stats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* eyewashArne Döring2018-11-233-7/+14
|
* fix for nimInActionArne Döring2018-11-2315-18/+76
|
* disable tio.nim, it just causes problemsArne Döring2018-11-231-0/+1
|
* maybe this time?Arne Döring2018-11-231-9/+17
|
* hopefully this time the tests will compile on the serverArne Döring2018-11-232-8/+1
|
* fix coro testArne Döring2018-11-231-1/+1
|
* more tests fixedArne Döring2018-11-234-3/+24
|
* activated more tests, allow input in test specArne Döring2018-11-2323-123/+186
|
* updated tests to be executedArne Döring2018-11-2353-87/+329
|
* delete old cruftArne Döring2018-11-235-97/+0
|
* make run the default action of a test in testerArne Döring2018-11-2347-41/+307
|
* fixes #9764Araq2018-11-231-0/+29
|
* Destructors: move into nkTupleConstr and move on tuple unpacking (#9776)cooldome2018-11-222-8/+72
|
* fix segfault when calling shallow() on an empty string (#9782) [backport]Ștefan Talpalaru2018-11-221-0/+7
| | | | | | | | | shallow() casts its string argument to a seq and then tries to access its fields. Guess what happens when that string is nil, which seems to be the representation of an empty string (both the default value and an explicitly assigned ""). Segfault encountered when running "ntags -R ." on a large project. The relevant line: https://bitbucket.org/nimcontrib/ntags/src/a1c62c38e539877c105fbe4e08d06b76232f8017/ntags.nim#lines-125
* don't raise exception in the default handler (#9783)alaviss2018-11-221-0/+6
| | | fixes #9657
* Add isInstanceOf for generic procs to the macros module (#9730)cooldome2018-11-211-0/+19
|
* Empty check in shallow [backport] (#9676)ishowta2018-11-211-0/+24
|
* fix #9726 (#9765)Arne Döring2018-11-201-0/+8
|
* bitsize respected in size calculation. (#9756)Arne Döring2018-11-191-4/+32
|
* fixes #9743Araq2018-11-191-1/+11
|
* Fixes #9671 (#9750)Randy Smith2018-11-193-5/+1
|
* Fixes discard bug in cpp codegen (#9747) [backport]cooldome2018-11-191-1/+11
| | | Fixes discard bug in cpp codegen
* Fixed yield in nkObjConstr. Fixes #9694 [backport] (#9744)Yuriy Glukhov2018-11-181-0/+15
| | | | | * Fixed yield in nkObjConstr. Fixes #9694 * Separate expr lowering from state splitting, introduce a clear lowering internal error
* make tsizeof run on C++ backend (#9734)Arne Döring2018-11-181-31/+35
|
* make tests green againAraq2018-11-166-16/+16
|
* removes deprecated T/P typesAraq2018-11-169-31/+31
|
* disable some tests for the C++ target; refs #7870Araq2018-11-158-44/+25
|
* Converter bug fixes (#9700)cooldome2018-11-151-0/+107
| | | | | * Fixes #9698 * Fixes #9699
* Of operator in vm fixes [backport] (#9717)cooldome2018-11-151-0/+51
| | | | | | * fixes #9701 * fixes #9702 * optimize of statement to bool
* fix #9647 tmpl=>nimf (#9658)Timothee Cour2018-11-142-1/+1
|
* Disable tasyncssl on Windows to fix CIDominik Picheta2018-11-131-0/+1
| | | Workarounds #9689
* Merge pull request #9687 from narimiran/fix-7192Dominik Picheta2018-11-131-0/+14
|\ | | | | export `asyncdispatch.callSoon` (fixes #7192)
| * export `asyncdispatch.callSoon` (fixes #7192)narimiran2018-11-121-0/+14
| |
* | Add proc `[]`(n: NimNode, s: HSlice[T, U]): seq[NimNode] to macros (#7735)Lolo Iccl2018-11-101-0/+38
| | | | | | fixes #7670.
* | complete future only once in `or` (fixes #8982) (#9632)Miran2018-11-091-0/+33
| | | | | | | | | | | | | | | | | | * complete future only once in `or` Analogous to `and`. Credits to @k0zmo for proposing the solution. * add test
* | deprecated ospaths (#9665)Andreas Rumpf2018-11-091-1/+1
| |
* | newLit works on enum (#9662)Arne Döring2018-11-091-0/+20
|/ | | | | | * newLit works on enum * remove debugging echo
* fixes #9619Andreas Rumpf2018-11-091-35/+42
|
* add illegal discard testArne Döring2018-11-081-0/+9
|
* adopt testsArne Döring2018-11-083-13/+12
|
* fixes #9633Andreas Rumpf2018-11-081-1/+17
|
* Merge pull request #9642 from narimiran/callback-orderDominik Picheta2018-11-071-2/+3
|\ | | | | keep the order of the callbacks
| * keep the order of the callbacksnarimiran2018-11-071-2/+3
| |
* | parser change: 'not' is always a unary operator; fixes #9574Andreas Rumpf2018-11-071-0/+5
|/
* fixes #9600 (#9601)jcosborn2018-11-071-0/+11
|
* times - remove unneeded negative sign when parsing formats z and zz (#9631)pgkos2018-11-061-0/+9
| | | | | | * fix wrong utcoffset sign for formats z and zz * add tests for the timezone offset formats
* Merge tests into a larger file (part 8 of ∞) (#9583)Miran2018-11-0651-835/+862
| | | | | | | | * merge tuple tests * merge trmacros tests * merge template tests
* removed the undocumented #? strongSpaces parsing modeAraq2018-11-061-83/+0
|
* language cleanup: the .unchecked pragma is deadAraq2018-11-061-1/+1
|
* make `mod` on floats available in the VM (#9591)skilchen2018-11-051-0/+130
| | | | | | * make `mod` on floats available in the VM * add testcase * removed no longer needed imports