diff options
Diffstat (limited to 'tests/compile/tos.nim')
-rwxr-xr-x | tests/compile/tos.nim | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/compile/tos.nim b/tests/compile/tos.nim deleted file mode 100755 index fa9993cc9..000000000 --- a/tests/compile/tos.nim +++ /dev/null @@ -1,12 +0,0 @@ -# test some things of the os module - -import os - -proc walkDirTree(root: string) = - for k, f in walkDir(root): - case k - of pcFile, pcLinkToFile: echo(f) - of pcDir: walkDirTree(f) - of pcLinkToDir: nil - -walkDirTree(".") |