Files
Nim/tests
Reimer Behrends 8b8a21cb59 Fixed parsing of float literals.
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.
2014-05-23 11:27:39 +02:00
..
2014-01-13 02:10:03 +01:00
2014-03-31 21:38:35 +02:00
2014-04-18 23:31:45 +01:00
2014-05-04 01:52:42 +02:00
2014-04-20 14:00:04 +02:00
2014-01-13 02:10:03 +01:00
2012-10-19 20:45:26 +02:00
2014-05-16 19:27:15 -04:00
2014-01-13 02:10:03 +01:00
2014-01-13 02:10:03 +01:00
2014-01-13 02:10:03 +01:00
2014-02-17 20:44:11 +02:00
2014-03-05 08:30:05 +01:00
2014-01-13 02:10:03 +01:00
2014-03-26 16:22:34 +01:00
2014-01-13 02:10:03 +01:00
2014-05-23 11:27:39 +02:00
2014-01-13 02:10:03 +01:00
2014-02-07 18:49:41 +01:00
2014-01-13 02:10:03 +01:00
2014-01-13 02:10:03 +01:00
2014-01-13 02:10:03 +01:00
2014-01-13 02:10:03 +01:00
2014-05-06 00:05:30 +02:00
2014-01-13 02:10:03 +01:00
2014-04-21 00:07:31 +02:00
2014-03-20 01:16:50 +02:00
2014-03-20 23:45:31 +02:00
2014-04-19 00:17:35 +01:00
2014-01-13 02:10:03 +01:00
2014-01-13 02:10:03 +01:00
2014-02-14 23:47:06 +01:00
2014-04-03 07:54:58 +02:00
2014-01-13 02:10:03 +01:00
2014-03-10 17:32:50 +01:00
2014-01-20 20:07:44 +01:00
2014-01-13 02:10:03 +01:00
2014-01-13 02:10:03 +01:00
2014-01-13 02:10:03 +01:00
2014-03-31 21:38:35 +02:00
2014-04-01 08:17:23 +02:00
2014-04-06 22:05:42 +02:00
2014-01-13 02:10:03 +01:00
2014-01-13 02:10:03 +01:00
2014-01-13 02:10:03 +01:00
2014-04-07 14:21:33 +02:00
2013-03-16 23:53:07 +01:00
2012-02-02 00:16:33 +01:00

This directory contains the test cases.
Each test must have a filename of the form: ``t*.nim``

Each test can contain a spec in a ``discard """"""`` block.

The folder ``rodfiles`` contains special tests that test incremental 
compilation via symbol files.

The folder ``dll`` contains simple DLL tests.