summary refs log tree commit diff stats
path: root/tests/misc
Commit message (Collapse)AuthorAgeFilesLines
* make tests green againAraq2017-12-151-13/+13
|
* Improved collection-to-string behavior (#6825)Fabian Keller2017-12-141-1/+1
|
* make tests green againAndreas Rumpf2017-11-211-12/+0
|
* Move deprecated romans module from stdlib to Nimble package (#6660)Lynn C. Rees2017-11-151-71/+0
|
* make tests green againAraq2017-11-011-1/+1
|
* first implementation of package level types that allow forwarding across ↵Andreas Rumpf2017-10-281-6/+2
| | | | module boundaries
* make tests green againAndreas Rumpf2017-10-101-1/+1
|
* Merge branch 'stringify-array' of https://github.com/krux02/Nim into ↵Andreas Rumpf2017-10-091-2/+1
|\ | | | | | | krux02-stringify-array
| * removed newString proc again, reverted some unnecesary changesArne Döring2017-07-241-2/+1
| |
* | make tests green againAndreas Rumpf2017-10-011-11/+11
| |
* | the parser finally parses 'echo {1,2}' as it shouldAndreas Rumpf2017-09-305-10/+10
| |
* | Remove expr/stmt (#5857)Arne Döring2017-07-253-7/+4
|/
* Merge pull request #5952 from Parashurama/fix_parseoptVarriount2017-06-131-0/+57
|\ | | | | Fix parseopt custom arguments
| * fixes parseopt/parseopt2 custom cmdline args.Parashurama2017-06-061-0/+57
| |
* | restrict casting for closure. (#5948); fixes #5742Parashurama2017-06-071-0/+23
|/ | | | | | | | | * restrict casting for closure. This commit forbid casting a closure to anything other than another closure. use rawEnv/rawProc to access underlaying pointers. * better error message for closure cast * fixes #5742
* another attempt to get travis greenAndreas Rumpf2017-03-291-13/+0
|
* Fixes to support Dragonfly BSD. (#5552)Eugene Kabanov2017-03-171-0/+2
| | | | | | | | | * Fix kqueue.nim and ansi_c.nim to support dragonfly. * Fix ioselectors.nim, threads.nim to support dragonfly. * Fix deprecated dealloc call in tioselectors.nim. * Fix tfsmonitor.nim test to run only on Linux. * Fix osproc.nim return wrong exit codes. * Fix getAppFilename() for dragonfly. * Fix proper exit code handling.
* big compiler refactoring; avoid globals for multi method dispatcher generationAndreas Rumpf2017-02-221-5/+5
|
* make tests on Windows green under --pedanticAraq2017-02-021-4/+3
|
* make tests greenAraq2016-12-181-2/+2
|
* Added deques module, deprecating queuesRuslan Mustakov2016-11-241-4/+4
|
* fixed regressionsAndreas Rumpf2016-03-291-13/+13
|
* make tests green againAndreas Rumpf2016-02-291-1/+1
|
* use 'using' instead of 'sig' keyword; cleans up new features a bitAndreas Rumpf2016-02-291-0/+39
|
* Fix a few deprecation warningsdef2016-01-254-8/+0
|
* JS: Corrected shift operators. Made casting between ints behave like C does.Yuriy Glukhov2016-01-221-6/+33
|
* Unsigned arith corrected for JSYuriy Glukhov2016-01-211-10/+24
|
* Closes: #3611Federico Ceratto2015-12-021-0/+12
|
* Merge branch 'mget' of https://github.com/def-/Nim into def--mgetAraq2015-10-131-2/+1
|\ | | | | | | | | | | | | | | | | | | Conflicts: lib/pure/collections/critbits.nim lib/pure/collections/tables.nim lib/pure/xmltree.nim lib/system/sets.nim tests/collections/ttables.nim tests/collections/ttablesref.nim
| * Rename mget to `[]`def2015-03-311-5/+4
| | | | | | | | | | | | | | | | | | - In sets, tables, strtabs, critbits, xmltree - This uses the new var parameter overloading - mget variants still exist, but are deprecated in favor of `[]` - Includes tests and fixed tests and usages of mget - The non-var `[]` now throws an exception instead of returning binary 0 or an empty string
* | add tfile/tline assertions for template expansion file/lineAman Gupta2015-10-061-5/+2
| |
* | minor testsuite cleanupAraq2015-09-101-1/+1
| |
* | tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-0441-355/+355
| | | | | | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* | renamed writeln to writeLine in testspatrick dw2015-06-197-148/+148
| |
* | Non-base10 overflow allowed if bit-stable. Tests.Oscar Campbell2015-06-121-0/+68
| |
* | s/procedure/routine/ in tests.Dominik Picheta2015-06-052-2/+2
| |
* | Fixes #2584Dominik Picheta2015-06-042-2/+2
| | | | | | | | | | Better compiler errors for accessing undeclared fields, calling undeclared procedures and procedure fields.
* | fixes #2550Araq2015-04-221-0/+14
| |
* | fixes #2427Araq2015-04-061-0/+14
|/
* doc updates; fixes 'inc' for 'char'Araq2015-03-294-102/+10
|
* Use `^` instead of `-` in slicesdef2015-03-281-3/+3
|
* codegen doesn't produce line tracing commands anymore; fixes #1344Araq2015-03-211-0/+43
|
* Fix tests some moredef2015-03-172-2/+2
|
* fixes --gc:none regression; made some tests greenAraq2015-03-102-5/+4
|
* add parser combinator test; uses multiple tuples/generics featuresMax Zerzouri2015-03-072-0/+160
|
* proper 'space in dir' testAraq2015-01-271-3/+0
|
* cleaned up unsigned testsAraq2015-01-272-24/+20
|
* Add filename space testVarriount2015-01-171-0/+3
|
* fixes the integer conversion regressionsAraq2015-01-131-3/+0
|
* Merge pull request #1841 from skyfex/develAndreas Rumpf2015-01-122-0/+186
|\ | | | | Add support for big 'u64 literals and remove SomeUInt from unsigned.nim