Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
openbmc
/
9c24da681c74b7ac45386487b4d9b60af14b3f63
/
.
/
poky
/
meta
/
recipes-devtools
/
perl
/
libmodule-build-perl
/
run-ptest
blob: d802781f9e6f1086975cdf7ffb3c7eb80dc7b45c [
file
] [
log
] [
blame
]
#!/bin/sh
for
case
in
`find t -type f -name '*.t'`
;
do
perl
-
I inc
-
I blib
-
Mblib
$case
>
$case
.
output
2
>&
1
ret
=
$
?
cat $case
.
output
if
[
$ret
-
ne
0
];
then
echo
"FAIL: ${case%.t}"
else
echo
"PASS: ${case%.t}"
fi
rm
-
f $case
.
output
done