File: test-all

package info (click to toggle)
utf8gen 1.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 240 kB
  • sloc: ansic: 366; sh: 71; makefile: 26
file content (14 lines) | stat: -rwxr-xr-x 186 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

echo "*** Running Tests..."
./test1 || exit 1
echo "Test 1 PASSED"

./test2 || exit 1
echo "Test 2 PASSED"

./test3 || exit 1
echo "Test 3 PASSED"

echo "*** Finished Tests"