blob: 2d00971d26236024c282c4783c6a8c304c03a27d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
# This script tests: pnmtoxwd xwdtopnm
# Also requires: pamchannel pamtopnm pamdepth
echo "Test 1. Should produce 1571496937 33838, cksum of testimg.red"
pamchannel -infile=testimg.ppm -tupletype="GRAYSCALE" 0 | pamtopnm | \
pnmtoxwd | xwdtopnm | pamdepth 255 | cksum
echo "Test 2. Should produce 1926073387 101484"
pnmtoxwd --quiet testimg.ppm | \
xwdtopnm --quiet | pamdepth 255 | cksum
echo "Test 3. Should produce 281226646 481"
pnmtoxwd --quiet maze.pbm | \
xwdtopnm | cksum
|