10 lines
227 B
Bash
10 lines
227 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
current_path=$(readlink -f $0)
|
||
|
|
export bindir=$(dirname $current_path)
|
||
|
|
export PATH=$bindir/bin:$PATH
|
||
|
|
export SKIP_KNOWN_BUGS=1
|
||
|
|
|
||
|
|
cd testsuite || exit 1
|
||
|
|
LANG=C.UTF-8 ./runtest -v | sed -r 's/^(SKIPPED|UNTESTED):/SKIP:/'
|