diff options
author | Andreas Rumpf <andreas@andreas-desktop> | 2009-12-07 01:24:27 +0100 |
---|---|---|
committer | Andreas Rumpf <andreas@andreas-desktop> | 2009-12-07 01:24:27 +0100 |
commit | bfef39246055769ae400c3db4c462bc947222d2c (patch) | |
tree | 8df050da62d77c923af27f427ccc934964acf22b /tests/tconsteval.nim | |
parent | e254741541b0389dfb0b675116c76a6a144b90b7 (diff) | |
download | Nim-bfef39246055769ae400c3db4c462bc947222d2c.tar.gz |
added missing tests
Diffstat (limited to 'tests/tconsteval.nim')
-rwxr-xr-x | tests/tconsteval.nim | 26 |
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] + + |