blob: 09b0bb036f17cbdafd70dc41b1af8d60307d9457 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
for test in \
"-O nrl:checking" \
"-B 401" \
"-V 401" \
"-G 401" \
"-B retire" \
"-V retire" \
"-G retire"
do
echo testing: $test
python confirm.py $test
done
|