summaryrefslogtreecommitdiffstats
path: root/testsuite/semok/transko.stp
blob: 0ea2fe749b29b873148de101b79e7e5660711522 (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