From 246b8d18a1102ddcb6435a67d6979fa2a48bf98e Mon Sep 17 00:00:00 2001 From: Araq Date: Fri, 22 Jul 2011 23:58:19 +0200 Subject: tests repaired; serious typo in the allocator fixed; fixes #32 --- tests/accept/compile/tos.nim | 4 ++-- tests/accept/compile/tseqcon2.nim | 2 +- tests/accept/compile/twalker.nim | 2 +- tests/accept/run/txmlgen.nim | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) (limited to 'tests') diff --git a/tests/accept/compile/tos.nim b/tests/accept/compile/tos.nim index 9ab4295f8..fa9993cc9 100755 --- a/tests/accept/compile/tos.nim +++ b/tests/accept/compile/tos.nim @@ -6,7 +6,7 @@ proc walkDirTree(root: string) = for k, f in walkDir(root): case k of pcFile, pcLinkToFile: echo(f) - of pcDirectory: walkDirTree(f) - of pcLinkToDirectory: nil + of pcDir: walkDirTree(f) + of pcLinkToDir: nil walkDirTree(".") diff --git a/tests/accept/compile/tseqcon2.nim b/tests/accept/compile/tseqcon2.nim index 6225c3bb1..4f2763ffe 100755 --- a/tests/accept/compile/tseqcon2.nim +++ b/tests/accept/compile/tseqcon2.nim @@ -3,7 +3,7 @@ import os proc rec_dir(dir: string): seq[string] = result = @[] for kind, path in walk_dir(dir): - if kind == pcDirectory: + if kind == pcDir: add(result, rec_dir(path)) else: add(result, path) diff --git a/tests/accept/compile/twalker.nim b/tests/accept/compile/twalker.nim index ba89ee7c6..3fdd8769b 100755 --- a/tests/accept/compile/twalker.nim +++ b/tests/accept/compile/twalker.nim @@ -7,7 +7,7 @@ proc main(filter: string) = for filename in walkFiles(filter): writeln(stdout, filename) - for key, val in iterOverEnvironment(): + for key, val in envPairs(): writeln(stdout, key & '=' & val) main("*.nim") diff --git a/tests/accept/run/txmlgen.nim b/tests/accept/run/txmlgen.nim index 4d5271563..917427abc 100755 --- a/tests/accept/run/txmlgen.nim +++ b/tests/accept/run/txmlgen.nim @@ -2,7 +2,7 @@ discard """ file: "txmlgen.nim" output: "

Nimrod

" """ -import xmlgen +import htmlgen var nim = "Nimrod" echo h1(a(href="http://force7.de/nimrod", nim)) -- cgit 1.4.1-2-gfad0