summary refs log tree commit diff stats
path: root/tests/tconsteval.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <andreas@andreas-desktop>2009-12-07 01:24:27 +0100
committerAndreas Rumpf <andreas@andreas-desktop>2009-12-07 01:24:27 +0100
commitbfef39246055769ae400c3db4c462bc947222d2c (patch)
tree8df050da62d77c923af27f427ccc934964acf22b /tests/tconsteval.nim
parente254741541b0389dfb0b675116c76a6a144b90b7 (diff)
downloadNim-bfef39246055769ae400c3db4c462bc947222d2c.tar.gz
added missing tests
Diffstat (limited to 'tests/tconsteval.nim')
-rwxr-xr-xtests/tconsteval.nim26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/tconsteval.nim b/tests/tconsteval.nim
new file mode 100755
index 000000000..2bda0651d
--- /dev/null
+++ b/tests/tconsteval.nim
@@ -0,0 +1,26 @@
+
+const
+  HelpText = """
++-----------------------------------------------------------------+
+|         Maintenance program for Nimrod                          |
+|             Version $1|
+|             (c) 2009 Andreas Rumpf                              |
++-----------------------------------------------------------------+
+Compiled at: $2, $3
+
+Usage:
+  koch.py [options] command [options for command]
+Options:
+  --force, -f, -B, -b      forces rebuild
+  --help, -h               shows this help and quits
+Possible Commands:
+  boot [options]           bootstraps with given command line options
+  clean                    cleans Nimrod project; removes generated files
+  web                      generates the website
+  csource [options]        builds the C sources for installation
+  zip                      builds the installation ZIP package
+  inno                     builds the Inno Setup installer
+""" % [NimrodVersion & repeatChar(44-len(NimrodVersion)), 
+       CompileDate, CompileTime]
+
+