blob: 7b17a1b2ffae2deb221bc09189f7507eaff04535 (
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
|