summary refs log tree commit diff stats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Fixed parsing of float literals.Reimer Behrends2014-05-231-0/+42
| | | | | | | | | Float literals were not parsed properly when their fractional part exceeded 53 significant bits. This affected in particular math.PI and math.E. Rather than reinventing the wheel, this patch reuses C's strtod() implementation, which already does the heavy lifting with respect to correctness, though some caution is necessary to keep float parsing locale-independent.
* Add test for #1081flaviut2014-05-161-0/+17
|
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-05-065-1/+196
|\
| * Merge pull request #1175 from EXetoC/await-discardDominik Picheta2014-05-041-0/+39
| |\ | | | | | | Fix #1170.
| | * Fix #1170.EXetoC2014-05-041-0/+39
| | |
| * | Added support for ref type hash tables.Reimer Behrends2014-05-042-0/+148
| |/ | | | | | | | | | | This reuses the hash table implementation for objects (and the associated tests). For efficiency reasons, iterator implementations are currently adapted rather than calling the TTable code.
| * Merge pull request #1173 from EXetoC/pfuture-nested-type-paramDominik Picheta2014-05-031-0/+8
| |\ | | | | | | Fix #1171.
| | * Fix #1171.EXetoC2014-05-031-0/+8
| | |
| * | fixed paths because caasdriver is now in testamentSimon Hafner2014-05-031-1/+1
| |/
* / added test case for bug #1140Araq2014-05-061-0/+35
|/
* Merge pull request #1121 from EXetoC/spawn-testVarriount2014-04-231-0/+29
|\ | | | | Add spawn test. Hangs most of the time on linux x64 at least.
| * Add spawn test. Hangs most of the time on linux x64 at least.EXetoC2014-04-201-0/+29
| |
* | Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-04-211-2/+2
|\ \
| * | Tester now ignores deprecation warnings.Dominik Picheta2014-04-211-2/+2
| | |
* | | some progress for #1082Araq2014-04-211-1/+2
|/ /
* | Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-04-214-4/+123
|\ \
| * \ Merge pull request #1099 from Varriount/os/getFileInfoAndreas Rumpf2014-04-201-0/+93
| |\ \ | | | | | | | | Added os.getFileInfo procedure.
| | * | Added tests for getFileInfo proc.Clay Sweetser2014-04-161-0/+93
| | | |
| * | | Merge pull request #1124 from EXetoC/spawn-arg-checkAndreas Rumpf2014-04-201-0/+7
| |\ \ \ | | | | | | | | | | Spawn argument checking.
| | * | | Add test for bad spawn argument.EXetoC2014-04-201-0/+7
| | | |/ | | |/|
| * | | Param name and type combos now work in type sig. sugar.Dominik Picheta2014-04-201-4/+4
| | | |
| * | | Fixes #1093.Dominik Picheta2014-04-201-0/+19
| | | |
* | | | attempt to make some tests greenAraq2014-04-213-7/+3
|/ / /
* | | Remove echo from => macro and fix tclosuremacro test.Dominik Picheta2014-04-201-20/+20
| | |
* | | Added new future module with a closure macro.Dominik Picheta2014-04-201-0/+43
| | |
* | | Removes tthreadanalysis3 from threadTests spec.Dominik Picheta2014-04-201-1/+1
|/ /
* | removed flawed thread analysis passAraq2014-04-205-60/+9
| |
* | Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-04-2028-55/+70
|\ \
| * | Disabled tgtk test.Dominik Picheta2014-04-191-1/+3
| | |
| * | Improves tobjasgn test.Dominik Picheta2014-04-181-6/+6
| | |
| * | Tester now appreciates the test target. Modified 'cmd' in specs.Dominik Picheta2014-04-1624-31/+31
| | |
| * | Fixes incorrect nodejs detection in tester.Dominik Picheta2014-04-161-2/+1
| | |
| * | Modified tester output. Fixed JS tests.Dominik Picheta2014-04-162-16/+24
| |/
| * Fixes docgen.Dominik Picheta2014-04-151-1/+1
| |
| * Fixes #1005Dominik Picheta2014-04-151-5/+10
| |
| * Add checks for invalid socket when creating sockets.Dominik Picheta2014-04-151-0/+1
| |
* | new concurrency model: first steps; shared is not a keyword anymoreAraq2014-04-141-0/+22
|/
* implemented 'R ptr T' syntaxAraq2014-04-131-2/+2
|
* Merge pull request #1075 from flaviut/inlinedocsAndreas Rumpf2014-04-0968-0/+2414
|\ | | | | Add some documentations and code examples in system
* \ Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-04-091-0/+11
|\ \
| * \ Merge pull request #901 from reactormonk/seq_toStringAndreas Rumpf2014-04-091-0/+11
| |\ \ | | |/ | |/| Added `$` for seq
| | * added `$` for arraysSimon Hafner2014-03-311-1/+5
| | |
| | * Merge branch 'devel' of github.com:Araq/Nimrod into seq_toStringSimon Hafner2014-03-31101-146/+1725
| | |\
| | * | explicit firstElement for `$` in collectionsSimon Hafner2014-02-111-1/+3
| | | |
| | * | Added `$` for seqSimon Hafner2014-02-111-0/+5
| | | |
* | | | implemented region pointersAraq2014-04-091-0/+16
|/ / /
* | | Merge branch 'devel' of github.com:Araq/Nimrod into develDominik Picheta2014-04-071-0/+23
|\ \ \
| * | | fixes #1063Araq2014-04-071-0/+23
| | | |
* | | | Change the expected path in tfailedassert.Dominik Picheta2014-04-061-1/+1
|/ / / | | | | | | | | | | | | | | | This will cause this test to fail on Linux. The behaviour on Windows is however correct, the filename returned by instantiationInfo is the projPath defined as being "relative to the project's root".
* | | fixes #798Araq2014-04-0611-1/+8
| | |