From 550ba9ebb4b1b2415c9930879cfa6937f7fa916a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 13 Aug 2007 13:15:02 +0000 Subject: * Fix the tests. --- tests/substituter.sh | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) (limited to 'tests/substituter.sh') diff --git a/tests/substituter.sh b/tests/substituter.sh index 005e97605c91..96fb95b91f6b 100755 --- a/tests/substituter.sh +++ b/tests/substituter.sh @@ -1,10 +1,19 @@ -#! /bin/sh -ex -echo $* - -case $* in - *) - mkdir $1 - echo $3 $4 > $1/hello - ;; -esac +#! /bin/sh -e +echo substituter args: $* >&2 +if test $1 = "--query-paths"; then + cat $TEST_ROOT/sub-paths +elif test $1 = "--query-info"; then + shift + for i in in $@; do + echo $i + echo "" # deriver + echo 0 # nr of refs + done +elif test $1 = "--substitute"; then + mkdir $2 + echo "Hallo Wereld" > $2/hello +else + echo "unknown substituter operation" + exit 1 +fi -- cgit 1.4.1