about summary refs log tree commit diff
path: root/tests/substituter2.sh
blob: 70f7d0943b981fa8001e07dea5558fc554a0626d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#! /bin/sh -e
echo substituter2 args: $* >&2

if test $1 = "--query"; then
    while read cmd; do
        if test "$cmd" = "have"; then
            read path
            if grep -q "$path" $TEST_ROOT/sub-paths; then
                echo 1
            else
                echo 0
            fi
        elif test "$cmd" = "info"; then
            read path
            echo 1
            echo "" # deriver
            echo 0 # nr of refs
            echo 0 # download size
        else
            echo "bad command $cmd"
            exit 1
        fi
    done
elif test $1 = "--substitute"; then
    exit 1
else
    echo "unknown substituter operation"
    exit 1
fi