mirror of
https://git.yoctoproject.org/poky
synced 2026-04-20 11:28:58 +00:00
libevent: update ptests fail condition
If exit status is 0 test is succesfull. (From OE-Core rev: 6b91338a0c09e117cfc58084b66ffcd149765316) Signed-off-by: Catalin Enache <catalin.enache@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
8efd482911
commit
1650f67230
@@ -4,7 +4,7 @@ fail=0
|
||||
for test in ./test/*
|
||||
do
|
||||
$test
|
||||
if [ $? -eq 0 ]
|
||||
if [ $? -ne 0 ]
|
||||
then
|
||||
fail=1
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user