6 lines
136 B
Plaintext
6 lines
136 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
make -C test -k tests root-tests |sed \
|
||
|
-e 's|^\[.*\] \(.*\) -- ok$|PASS: \1|' \
|
||
|
-e 's|^\[.*\] \(.*\) -- failed|FAIL: \1|'
|