1#!/usr/bin/perl 2# 3# Test reading CGM files 4# 5# Written by Bob Friesenhahn 6# 7# Whenever a new test is added/removed, be sure to update the 8# 1..n ouput. 9# 10BEGIN { $| = 1; $test=1; print "1..1\n"; } 11END {print "not ok $test\n" unless $loaded;} 12use Image::Magick; 13$loaded=1; 14 15require 't/subroutines.pl'; 16 17chdir 't/cgm' || die 'Cd failed'; 18 19testReadCompare('CGM:input.cgm', '../reference/cgm/read.miff', q//, 0.0 0.0); 20 21