blob: da686eb46545e0335b817023f888629a9f966f47 [file] [log] [blame]
Andrew Geissler517393d2023-01-13 08:55:19 -06001#!/bin/sh
2
3num_fail=0
4
5for test in tests/check*
6do
7 ./"$test" \
8 && echo "PASS: $test" \
9 || {
10 echo "FAIL: $test"
11 num_fail=$(( ${num_fail} + 1))
12 }
13
14done
15
16exit $num_fail