blob: de7c415aba675814460c75cb9567b3cb293e56cd [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001#!/bin/sh
2
3test_fullname=`find test -name test_*.rb`
4
5for i in ${test_fullname}; do
6 ruby ./test/runner.rb ${i} 2>&1 > /dev/null
7 ret=$?
8 if [ $ret != 0 ]; then
9 echo "FAIL: ${i}"
10 else
11 echo "PASS: ${i}"
12 fi
13done