repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Check for SYS/GL during library init. Reason is that
[AROS.git]
/
workbench
/
libs
/
png
/
tests
/
pngstest-error
blob
ebf3a7b59ea8e9b7218ed7f360c5ad43febabcb1
1
#!/bin/sh
2
code
=
77
# skipped
3
for
t
in
"
${srcdir}
/contrib/pngsuite/"
x
*
".png"
4
do
5
if
test
"
$t
"
!=
"
${srcdir}
/contrib/pngsuite/x*.png"
6
then
7
# not skipped, test it
8
if
.
/
pngstest
--strict --tmpfile
"error"
--log
"$@"
"
$t
"
9
then
10
code
=
0
# oops, success: should not happen!
11
fi
12
fi
13
done
14
exit
$code