summaryrefslogtreecommitdiffstats
path: root/testsuite/transok/buildko.stp
blob: 4387b0f158d2a010c4d833266f55811114f27d04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

# make sure that we can *translate* all buildko test files, to ensure
# that it is build-time checks that fail, not earlier ones

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