mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 06:49:52 +08:00
9 lines
94 B
Bash
9 lines
94 B
Bash
#!/bin/sh
|
|
|
|
cd `dirname "$0"`/tests
|
|
../tap/runtests -b /tmp ./*test_*
|
|
ret=$?
|
|
cd -
|
|
|
|
return $ret
|