Changeset 1589

Show
Ignore:
Timestamp:
07/03/04 10:29:26 (20 years ago)
Author:
jalet
Message:

Replaced uncompressed version of the PostScript? file with a compressed version

Location:
pykota/trunk/tests
Files:
1 added
1 removed
2 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/tests/README

    r1588 r1589  
    2020==================================================================== 
    2121 
    22 This directory contains a PostScript file, master.ps, obtained by  
    23 printing to a file a part of the SlashDot.org website from the  
    24 Galeon web browser on July 2nd 2004.  
     22This directory contains a gzipped PostScript file, master.ps.gz,  
     23obtained by printing to a file a part of the SlashDot.org website  
     24from the Galeon web browser on July 2nd 2004.  
    2525 
    26 This 16 pages file can be used to test the accuracy of the generic 
    27 Page Description Language analyzer included in PyKota for different 
    28 conversion outputs of gs. 
     26When uncompressed, this 16 pages file can be used to test the  
     27accuracy of the generic Page Description Language analyzer included  
     28in PyKota for different conversion outputs of gs.  
    2929 
    3030To see if it works, simply launch : 
  • pykota/trunk/tests/runtest.sh

    r1588 r1589  
    22 
    33echo -n "Generating testsuite..." 
    4 /bin/rm -f testsuite.* 
     4/bin/rm -f testsuite.* master2.ps 
     5gunzip <master.ps.gz >master2.ps 
    56for device in laserjet ljet3 ljet4 lj5gray lj5mono pxlmono pxlcolor pdfwrite pswrite psgray psmono psrgb ; do 
    6     gs -dQUIET -dBATCH -dNOPAUSE -sOutputFile="testsuite.$device" -sDEVICE="$device" master.ps ; 
     7    gs -dQUIET -dBATCH -dNOPAUSE -sOutputFile="testsuite.$device" -sDEVICE="$device" master2.ps ; 
    78    done 
    89echo  
    910 
    1011echo -n "File master.ps should be 16 pages long, result is : " 
    11 python ../pykota/pdlanalyzer.py master.ps 
     12python ../pykota/pdlanalyzer.py master2.ps 
    1213 
    1314echo "Analyzing testsuite..."