summary refs log tree commit diff stats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* JS: Fixed ICE on ptr assignmentYuriy Glukhov2016-09-202-0/+15
|
* Fixes #4797.Dominik Picheta2016-09-191-0/+4
|
* Implements proxy support for (Async)HttpClient. Ref #4423.Dominik Picheta2016-09-181-0/+6
| | | | Fixes #2160.
* Implements timeouts for synchronous HttpClient.Dominik Picheta2016-09-181-0/+13
|
* Improvements to httpclient. Refs #4423.Dominik Picheta2016-09-181-0/+53
| | | | | | * Adds ability to query HttpCode and compare it with strings. * Moves HttpMethod to HttpCore module. * Implements synchronous HttpClient using {.multisync.}.
* Implements {.multisync.} pragma for async and sync proc combos.Dominik Picheta2016-09-181-0/+8
|
* Increase error rate for upcoming timers test.Dominik Picheta2016-09-171-1/+1
|
* tests: tnewasyncudp: use constantSimon Ruderich2016-09-171-3/+3
|
* Fixes #4170.Dominik Picheta2016-09-171-17/+55
|
* Fixes #4262.Dominik Picheta2016-09-171-0/+19
|
* Fix #4777 network buffers overflow because of immediate `sendTo` call.cheatfate2016-09-171-4/+17
|
* Use array encoding for non-UTF-8 strings in marshal. Fixes #4779.Ruslan Mustakov2016-09-161-2/+10
|
* Always use https:// in git cloneSimon Ruderich2016-09-151-1/+1
| | | | git:// is unencrypted.
* fixes #4626Andreas Rumpf2016-09-131-0/+7
|
* fixes #4625Andreas Rumpf2016-09-131-0/+22
|
* fixes #4671Andreas Rumpf2016-09-131-0/+17
|
* Fix tasyncsend4757 test (Linux)Dmitry Polienko2016-09-131-3/+1
|
* Add test for issue #4757Dmitry Polienko2016-09-131-0/+16
|
* update path to SSL certificatescheatfate2016-09-071-2/+2
|
* Removed tests with `asyncio`.cheatfate2016-09-074-171/+67
| | | | | Fix ssl connection drop in asyncnet Add tasyncssl test
* fixes #4721Andreas Rumpf2016-09-071-0/+11
|
* Merge pull request #4725 from cheatfate/fixtest_upcomingAndreas Rumpf2016-09-061-0/+125
|\ | | | | upcoming_async: Fix multiple issues and add test.
| * Fix windows issues.cheatfate2016-09-061-0/+125
| | | | | | | | | | | | Fix semantic of AsyncEvent close/unregister #4694. Fix #4697. Added first test.
* | fixes a critical tables bug that caused 'enlarge' to crash after 'add'Andreas Rumpf2016-09-051-0/+13
|/
* Merge pull request #4706 from cheatfate/testupcomingAndreas Rumpf2016-09-042-0/+12
|\ | | | | Add upcoming/asyncdispatch.nim to tests.
| * Fix define.cheatfate2016-09-041-1/+1
| |
| * Add upcoming/asyncdispatch.nim to tests.cheatfate2016-09-042-0/+12
| |
* | Enabled logging tests for jsYuriy Glukhov2016-09-031-2/+2
|/
* Merge pull request #4701 from mbaulch/fix4675Andreas Rumpf2016-09-033-0/+27
|\ | | | | pickBestCandidate: pre-calculate candidates when symbol table modified
| * Add a test case for issue #4675.Matthew Baulch2016-09-033-0/+27
| |
* | fixes #4673Andreas Rumpf2016-09-011-0/+13
| |
* | fixes #4672Andreas Rumpf2016-09-011-0/+12
| |
* | Fixed getCurrentException and getCurrentExceptionMsg. Closes #4635Yuriy Glukhov2016-08-291-3/+3
| |
* | Merge pull request #4661 from yglukhov/js-uncaught-stacktraceAndreas Rumpf2016-08-293-3/+8
|\ \ | | | | | | Uncaught exceptions in JS now always propagate with better stack trace. Fixed codegen bug.
| * | Treat all failure codes from nodejs as 1Yuriy Glukhov2016-08-271-0/+5
| | |
| * | Fixed js codegen issue for uncaught exceptions.Yuriy Glukhov2016-08-272-3/+3
| |/
* | fixes a regression that caused --import in a config file to break thingsAndreas Rumpf2016-08-293-0/+2
| |
* | disable rodfile tests depending on gtkAraq2016-08-281-1/+1
| |
* | MergedAraq2016-08-2720-54/+305
|\|
| * test case cleanupAndreas Rumpf2016-08-261-4/+4
| |
| * added missing test filesAndreas Rumpf2016-08-262-0/+110
| |
| * fixes #4292Andreas Rumpf2016-08-261-0/+9
| |
| * fixes #4658Andreas Rumpf2016-08-261-0/+13
| |
| * make tests green againAndreas Rumpf2016-08-251-1/+1
| |
| * make tests green againAndreas Rumpf2016-08-252-3/+3
| |
| * Merge pull request #4367 from kierdavis/4365-tables-clearAndreas Rumpf2016-08-252-0/+48
| |\ | | | | | | Improvements to tables.clear()
| | * Disable failing tests for tables.clear()Kier Davis2016-07-091-20/+22
| | | | | | | | | | | | | | | The tests for tables.clear() in tests/collections/ttables.nim currently fail as a result of #4448, so I've wrapped them in a 'when false' to disable them until the bug is fixed.
| | * Add tests for tables.clear()Kier Davis2016-07-092-0/+46
| | | | | | | | | | | | This should reduce the chance of regressions.
| * | Merge pull request #4629 from flyx/times-parse-yeardayAndreas Rumpf2016-08-251-38/+32
| |\ \ | | | | | | | | Calculate correct yearday in times.parse
| | * | Improved times testsFelix Krause2016-08-211-38/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added check for yearday * Changed some test dates to check different equivalence classes of yearday (before leap day, at leap day, after february in leap year, after february in non-leap year)