summaryrefslogtreecommitdiffstats
path: root/testsuite/semok/transko.stp
blob: 18bfc8aac97083976fa93d8f1545b2b3eb03b857 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

# make sure that we can *semcheck* all transko test files, to ensure
# that it is translation-time checks that fail, not earlier ones

set -e
for file in ${SRCDIR}/testsuite/transko/*.stp
do
  if grep -q /bin/sh $file; then
    true # can't override stap options
  else
    ./stap -p2 $file
  fi
done