about summary refs log tree commit diff
path: root/test/g3-roundtrip.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/g3-roundtrip.test')
-rwxr-xr-xtest/g3-roundtrip.test20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/g3-roundtrip.test b/test/g3-roundtrip.test
index 10174733..6e31c587 100755
--- a/test/g3-roundtrip.test
+++ b/test/g3-roundtrip.test
@@ -9,15 +9,15 @@ wideb_pbm=${tmpdir}/wideb.pbm
 
 pbmtog3 -nofixedwidth testgrid.pbm | \
 g3topbm -width=14 | cmp -s - testgrid.pbm
-echo $?
+echo ${PIPESTATUS[@]} ":" $?
 
 pbmtog3 -nofixedwidth -reversebits testgrid.pbm | \
 g3topbm -width=14 -reversebits | cmp -s - testgrid.pbm
-echo $?
+echo ${PIPESTATUS[@]} ":" $?
 
 pbmtog3 testgrid.pbm | \
 g3topbm  | pnmcrop -white -right -bottom | \
- cmp -s - testgrid.pbm ; echo $?
+ cmp -s - testgrid.pbm ; echo ${PIPESTATUS[@]} ":" $?
 
 # works with gawk and mawk
 # produce all possible 8-bit patterns
@@ -28,31 +28,31 @@ LC_ALL=C awk 'BEGIN { print "P4";         # header
                            printf("%c",i) }' > ${complete256_pbm}
 
 pbmtog3 -nofixedwidth  ${complete256_pbm} |  g3topbm -width=8 | \
- cmp -s - ${complete256_pbm} ; echo $?
+ cmp -s - ${complete256_pbm} ; echo ${PIPESTATUS[@]} ":" $?
 
 pbmtog3 -reverse -nofixedwidth ${complete256_pbm} | \
 g3topbm -reversebits -width=8 | \
- cmp -s - ${complete256_pbm} ; echo $?
+ cmp -s - ${complete256_pbm} ; echo ${PIPESTATUS[@]} ":" $?
 
 pbmtog3 -align8 ${complete256_pbm} | \
 g3topbm -width=1728 | pnmcrop -white -right | \
- cmp -s - ${complete256_pbm} ; echo $?
+ cmp -s - ${complete256_pbm} ; echo ${PIPESTATUS[@]} ":" $?
 
 pbmtog3 -align16 ${complete256_pbm} | \
 g3topbm -width=1728 | pnmcrop -white -right | \
- cmp -s - ${complete256_pbm} ; echo $?
+ cmp -s - ${complete256_pbm} ; echo ${PIPESTATUS[@]} ":" $?
 
 pbmmake -w 5000 5 > ${widew_pbm}
 pbmtog3 -nofixedwidth ${widew_pbm} | g3topbm | \
- cmp -s - ${widew_pbm} ; echo $?
+ cmp -s - ${widew_pbm} ; echo ${PIPESTATUS[@]} ":" $?
 
 pbmtog3 -nofixedwidth ${widew_pbm} | \
 g3topbm -width=5000 | \
- cmp -s - ${widew_pbm} ; echo $?
+ cmp -s - ${widew_pbm} ; echo ${PIPESTATUS[@]} ":" $?
 
 pbmmake -b 5000 5 > ${wideb_pbm}
 pbmtog3 -nofixedwidth ${wideb_pbm} | g3topbm | \
- cmp -s - ${wideb_pbm} ; echo $?
+ cmp -s - ${wideb_pbm} ; echo ${PIPESTATUS[@]} ":" $?
 
 cat ${complete256_pbm} | cksum
 cat ${wideb_pbm} | cksum