add sample .arv files and argvTest.nds

This commit is contained in:
Dave Murphy 2011-08-12 14:33:41 +00:00
parent b212a2a014
commit a368a1fde6
3 changed files with 28 additions and 0 deletions

BIN
testfiles/argvTest.nds Normal file

Binary file not shown.

6
testfiles/test1.argv Normal file
View File

@ -0,0 +1,6 @@
# This is a comment
# This is a straightforward command line, name of nds file followed by parameters
# this can include a path relative to the .argv file
# absolute paths are not currently supported
argvTest.nds bunch of parameters go here

22
testfiles/test2.argv Normal file
View File

@ -0,0 +1,22 @@
# This is a comment
# lines consisting only of whitespace will also be ignored
# commands can be placed on multiple lines
# first the name of the nds file to run
# this can include a path relative to the .argv file
# absolute paths are not currently supported
argvTest.nds
# a single argument
argument1
# multiple arguments separated by spaces
argument2 argument3
# multiple arguments separated by tabs
argument4 argument5
# or even separated by both tabs and spaces
argument6 argument7 argument8