8 lines
94 B
Bash
8 lines
94 B
Bash
#!/bin/sh
|
|
|
|
cd `dirname "$0"`/tests
|
|
../tap/runtests -b /tmp ./*test_*
|
|
ret=$?
|
|
cd -
|
|
|
|
return $ret
|