Home | History | Annotate | Download | only in cgm
      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 #
     10 BEGIN { $| = 1; $test=1; print "1..1\n"; }
     11 END {print "not ok $test\n" unless $loaded;}
     12 use Image::Magick;
     13 $loaded=1;
     14 
     15 require 't/subroutines.pl';
     16 
     17 chdir 't/cgm' || die 'Cd failed';
     18 
     19 testReadCompare('CGM:input.cgm', '../reference/cgm/read.miff', q//, 0.0 0.0);
     20 
     21