summaryrefslogtreecommitdiff
path: root/tests/test-asyncsafe-linked_list.sh
blob: c2ad176b7efca92724b225a4f60d1a71f1b8419d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

st=0
for i in 1 2 3 ; do
  ${CHECKER} ./test-asyncsafe-linked_list${EXEEXT} $i
  result=$?
  if test $result = 77; then
    st=77
    break
  fi
  if test $result != 0; then
    echo test-asyncsafe-linked_list.sh: test case $i failed >&2
    st=1
  fi
done
exit $st

Return to:

Send suggestions and report system problems to the System administrator.