File: test-fpending.sh

package info (click to toggle)
sed 4.9-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 12,888 kB
  • sloc: ansic: 71,786; sh: 12,853; perl: 2,240; sed: 655; makefile: 95
file content (12 lines) | stat: -rwxr-xr-x 160 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

tmpfile=
trap 'rm -fr $tmpfile' 1 2 3 15

tmpfile=test-fpending.t

${CHECKER} ./test-fpending${EXEEXT} > $tmpfile || exit 1

rm -fr $tmpfile

exit 0