mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-17 04:37:19 +00:00
a16c3b3c6b
Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
7 lines
175 B
Bash
7 lines
175 B
Bash
#!/bin/sh
|
|
|
|
for t in `ls test/*.test`; do
|
|
top_srcdir=$(pwd)/input top_builddir=$(pwd)/test ./$t && echo PASS: $t || echo FAIL: $t
|
|
rm $(pwd)/test/test/data/* 2>/dev/null
|
|
done
|