1#!/bin/sh 2# 3# Basic sanity check for tiffcp + tiffsplit 4# 5# First we use tiffcp to join our test files into a multi-frame TIFF 6# and then we use tiffsplit to split them out again. 7# 8. ${srcdir:-.}/common.sh 9conjoined=o-tiffcp-split-conjoined.tif 10splitfile=o-tiffcp-split-split- 11 12f_test_convert "${TIFFCP}" "${IMG_UNCOMPRESSED}" "${conjoined}" 13f_test_convert "${TIFFSPLIT}" "${conjoined}" "${splitfile}"