File: upstream-tests

package info (click to toggle)
hello 2.10-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,792 kB
  • sloc: ansic: 11,081; sh: 6,446; makefile: 131; sed: 16
file content (9 lines) | stat: -rwxr-xr-x 143 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e
for i in tests/*; do
  if [ "$i" = "tests/greeting-2" ]; then
    continue
  fi
  echo "Testing $(basename $i) ..."
  $i
done