about summary refs log tree commit diff
path: root/test/sgi-roundtrip.test
blob: 5012aab7f1390f04f4af06884aaf7a5076c2c495 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#! /bin/bash
# This script tests: pnmtosgi sgitopnm
# Also requires: rgb3toppm


a_sgi=${tmpdir}/a.sgi
a_red=${tmpdir}/a.red
a_grn=${tmpdir}/a.grn
a_blu=${tmpdir}/a.blu

# Test 1.  Should produce 1926073387 101484 twice
pnmtosgi -rle testimg.ppm | tee ${a_sgi} | sgitopnm  | cksum
sgitopnm -channel=0  ${a_sgi} > ${a_red}
sgitopnm -channel=1  ${a_sgi} > ${a_grn}
sgitopnm -channel=2  ${a_sgi} > ${a_blu}
rgb3toppm ${a_red} ${a_grn} ${a_blu} | cksum
rm ${a_sgi} ${a_red} ${a_grn} ${a_blu}

b_sgi=${tmpdir}/b.sgi
b_red=${tmpdir}/b.red
b_grn=${tmpdir}/b.grn
b_blu=${tmpdir}/b.blu

# Test 2.  Should produce 1926073387 101484 twice
pnmtosgi -verbatim testimg.ppm | tee ${b_sgi} | sgitopnm  | cksum
sgitopnm -channel=0  ${b_sgi} > ${b_red}
sgitopnm -channel=1  ${b_sgi} > ${b_grn}
sgitopnm -channel=2  ${b_sgi} > ${b_blu}
rgb3toppm ${b_red} ${b_grn} ${b_blu} | cksum
rm ${b_sgi} ${b_red} ${b_grn} ${b_blu}

# Test 3.  Should produce 2425386270 41 twice
pnmtosgi testgrid.pbm | sgitopnm | cksum             # Defaults to -rle
pnmtosgi -verbatim testgrid.pbm | sgitopnm | cksum