hepmc - Blame information for rev 112

Subversion Repositories:
Rev:
Rev Author Line No. Line
17 garren 1 #! /bin/sh
2 # @configure_input@
48 garren 3 # you can compare testHepMC.out to @srcdir@/testHepMC.dat
4 # and testHepMCExtended.out to @srcdir@/testHepMCExtended.dat,
17 garren 5 # but the particles within a vertex are printed in "random" order
6  
7 ./testHepMC@EXEEXT@ \
8 | @DIFF_Q@ - @srcdir@/testHepMC.output > /dev/null
35 garren 9  
60 garren 10 OS=`uname`
73 garren 11 case "$OS" in
12 CYGWIN*)
13 #don't compare these on Windows (hopelessly different default output)
101 garren 14 sed 's/e+00/e+0/g' testHepMC.out | \
112 garren 15 sed 's/e-00/e-0/g' - | \
101 garren 16 @DIFF_Q@ - @srcdir@/testHepMC.dat
73 garren 17 ;;
18 Darwin*)
19 # MacOSX fix
20 sed 's/e-00/e+00/g' @srcdir@/testHepMCParticle.output | \
21 @DIFF_Q@ - testHepMCParticle.out
101 garren 22 @DIFF_Q@ testHepMC.out @srcdir@/testHepMC.dat
73 garren 23 ;;
24 *)
25 @DIFF_Q@ testHepMCParticle.out @srcdir@/testHepMCParticle.output
101 garren 26 @DIFF_Q@ testHepMC.out @srcdir@/testHepMC.dat
73 garren 27 esac