summary refs log tree commit diff stats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* old 'readline' and 'endOfFile' not deprecated anymore; too convenient for 1 ↵Araq2011-11-291-1/+1
| | | | liners (see examples/maximum.nim)
* further steps to get rid of deprecated endOfFile and readLineAraq2011-11-292-3/+3
|
* fixes #31Araq2011-11-271-0/+4
|
* deprecated endOfFile and readLineAraq2011-11-251-4/+4
|
* fixed bug that kept tls emulation from workingAraq2011-11-252-17/+16
|
* attempt to fix tunidecode test; GC cares for seq->openArray conversionsAraq2011-11-212-4/+2
|
* bugfix: 'when' sections in generic objects now work, so TThread[void] compilesAraq2011-11-201-1/+1
|
* got rid of 'accept' dir in the testsAraq2011-11-19263-6/+4
|
* fixed some testsAraq2011-11-1912-70/+77
|
* tester: threading tests addedAraq2011-11-195-12/+77
|
* bugfix: fixed memory leaks in osproc moduleAraq2011-11-185-109/+165
|
* macros and templates can be expanded anywhere where a type is expected.Zahary Karadjov2011-11-181-0/+39
| | | | | This allows for various type selection algorithms to be implemented. See tests / accept / compile / ttypeselectors.nim for examples.
* bugfixes: objects still invalid for constants; fixed a typo concerning ↵Araq2011-11-152-1/+29
| | | | 'high' in eval context
* tester uses same layout as nimbuildAraq2011-11-123-5/+273
|
* Merge branch 'master' of github.com:Araq/NimrodAraq2011-11-122-47/+3
|\
| * when running unit tests, the tester will print only failures using colorless ↵Zahary Karadjov2011-11-102-47/+3
| | | | | | | | output (this should be better for nimbuild)
* | added another test caseAraq2011-11-121-0/+10
|/
* GC tests now finally part of testsuiteAraq2011-11-109-669/+73
|
* operator precedence changed: assignment like operators are supported; ↵Araq2011-11-092-0/+15
| | | | escaping of operators with \ is supported
* bugfixes for the testsuiteAraq2011-11-081-14/+17
|
* bugfixes for the tester; the tester now supports running of single testsAraq2011-11-089-49/+71
|
* tester checks exitcode; osproc additions; DLL fixes; taint mode fixesAraq2011-11-074-28/+114
|
* better exception behavior for os.removeFile and os.removeDirAraq2011-11-061-6/+1
|
* compilation cache: fixed recently introduced bug (lazy loading of bodies)Araq2011-11-063-0/+30
|
* Added ftpclient module. Fixed docs in sockets module. Added dll tests to ↵dom962011-11-042-0/+15
| | | | test suite.
* fixes #2Araq2011-11-021-3/+0
|
* fixes #59Araq2011-11-021-0/+9
|
* small bugfixes to make more tests greenAraq2011-11-025-4/+18
|
* DLL generation may work againAraq2011-11-022-0/+19
|
* Fixed the tester. Some fixes and additions for the JS backend.dom962011-10-311-9/+9
|
* lazy loading of body ast implementedAraq2011-10-301-12/+23
|
* splicing tested and documentedAraq2011-10-285-8/+20
|
* eval context for macros lives as long as the current module is compiledAraq2011-10-281-0/+19
|
* compilation cache: tests now part of test suiteAraq2011-10-2716-30/+241
|
* compilation cache: mostly working; generics not yetAraq2011-10-252-0/+22
|
* rod files: next trivial examples workingAraq2011-10-222-1/+36
|
* 'bind' as a declarative statementAraq2011-10-102-0/+15
|
* new syntactic construct: a{i}Araq2011-10-081-1/+2
|
* slurp uses path; unidecode is improved and threadsafeAraq2011-10-081-0/+9
|
* Basic unit testing facilities (suites, fixtures, cases)Zahary Karadjov2011-10-071-0/+47
| | | | | | | | Added: PNimrodNode.lineinfo for better error messages from macros Added: seq.splice For easier use from templates and macros, except stament now supports the list of exception types to be supplied in nkBraket node (array literal).
* code generator supports constant sequences; more consistent compile time ↵Araq2011-10-071-1/+0
| | | | evaluation
* bugfix: overloading resolution for typeofAraq2011-09-271-0/+7
|
* bugfix: $ escaping in interpolatedFragmentsAraq2011-09-261-6/+10
|
* bugfix: internal error in evalFieldAccess; parseutils.interpolatedFragments ↵Araq2011-09-261-10/+7
| | | | optimized; tstringinterp.nim now works
* renamed optional to discardableAraq2011-09-241-3/+3
|
* implemented optional pragma for implicit discardAraq2011-09-241-0/+13
|
* more fixes to get rid of tyPureObjectAraq2011-09-241-4/+4
|
* fixed some newly introduced bugsAraq2011-09-212-22/+59
|
* using statement (ala C#) implemented as macro (added as test).Zahary Karadjov2011-09-202-18/+109
| | | | simplified the usage of the interpolatedFragments iterator.
* Moved the parseAST magics to evals.nimZahary Karadjov2011-09-201-0/+82
| | | | | | | | | | | | | | Added string interpolation helper routines in parserutils Added a proof-of-concept string interpolation user-land macros (currently, only as a test case): the interpolated expression could either be transformed to concat("literal string ", $(interpolated), " end") or "literal string $1 end" % [$(interpolated)] Added a very initial definition of Optional[T] generic type A new overload of ParseIdent was added in hope to get around the fact that the old one doesn't work correctly in macros, but the problem persists.