Mercurial > libpst
diff regression/regression-tests.bash @ 100:1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Thu, 02 Oct 2008 15:29:36 -0700 |
parents | b7f456946c5b |
children | 1fc33da23175 |
line wrap: on
line diff
--- a/regression/regression-tests.bash Sun Sep 28 17:08:52 2008 -0700 +++ b/regression/regression-tests.bash Thu Oct 02 15:29:36 2008 -0700 @@ -1,72 +1,54 @@ #!/bin/bash + +function dodii() +{ + n="$1" + fn="$2" + rm -rf output$n + mkdir output$n + $val ../src/pst2dii -f /usr/share/fonts/bitstream-vera/VeraMono.ttf -B "bates-" -o output$n -O mydii$n -d dumper $fn >$fn.dii.err 2>&1 + ../src/readpstlog -f I dumper >$fn.log + rm -f dumper +} + + +function dopst() +{ + n="$1" + fn="$2" + rm -rf output$n + mkdir output$n + $val ../src/readpst -cv -o output$n -d dumper $fn >$fn.pst.err 2>&1 + ../src/readpstlog -f I dumper >$fn.log + $val ../src/pst2ldif -b 'o=ams-cc.com, c=US' -c 'newPerson' $fn >$fn.ldif.err 2>&1 + rm -f dumper +} + + + val="valgrind --leak-check=full" -#val='' +val='' pushd .. make || exit popd -for i in {1..13}; do - rm -rf output$i - mkdir output$i -done - if [ "$1" == "dii" ]; then - hash=$(md5sum ams.pst) - pre="$hash - bates-" - $val ../src/pst2dii -f /usr/share/fonts/bitstream-vera/VeraMono.ttf -B "$pre" -o output1 -O mydii -d dumper ams.pst - ../src/readpstlog -f I dumper >ams.log - $val ../src/pst2dii -f /usr/share/fonts/bitstream-vera/VeraMono.ttf -B "bates-" -o output2 -O mydii2 -d dumper sample_64.pst - ../src/readpstlog -f I dumper >sample_64.log - $val ../src/pst2dii -f /usr/share/fonts/bitstream-vera/VeraMono.ttf -B "bates-" -o output3 -O mydii3 -d dumper test.pst - ../src/readpstlog -f I dumper >test.log - ../src/pst2dii -f /usr/share/fonts/bitstream-vera/VeraMono.ttf -B "bates-" -o output4 -O mydii4 -d dumper big_mail.pst - ../src/readpstlog -f I dumper >big_mail.log - exit + dodii 1 ams.pst + dodii 2 sample_64.pst + dodii 3 test.pst + dodii 4 big_mail.pst +else + dopst 1 ams.pst + dopst 2 sample_64.pst + dopst 3 test.pst + dopst 4 big_mail.pst + dopst 5 mbmg.archive.pst + dopst 6 Single2003-read.pst + dopst 7 Single2003-unread.pst + dopst 8 ol2k3high.pst + dopst 9 ol97high.pst + dopst 10 returned_message.pst fi -$val ../src/pst2ldif -b 'o=ams-cc.com, c=US' -c 'newPerson' ams.pst >ams.err 2>&1 -exit - -$val ../src/readpst -cv -o output1 -d dumper ams.pst >out1.err 2>&1 - ../src/readpstlog -f I dumper >ams1.log - -$val ../src/readpst -cl -r -o output2 ams.pst >out2.err 2>&1 -$val ../src/readpst -S -o output3 ams.pst >out3.err 2>&1 -$val ../src/readpst -M -o output4 -d dumper ams.pst >out4.err 2>&1 - ../src/readpstlog -f I dumper >ams.log - -$val ../src/readpst -o output5 -d dumper mbmg.archive.pst >out5.err 2>&1 - ../src/readpstlog -f I dumper >mbmg.archive.log - -$val ../src/readpst -o output6 -d dumper test.pst >out6.err 2>&1 - ../src/readpstlog -f I dumper >test.log - -$val ../src/readpst -cv -o output7 -d dumper sample_64.pst >out7.err 2>&1 - ../src/readpstlog -f I dumper >sample_64.log - -#$val ../src/readpst -cv -o output8 -d dumper big_mail.pst >out8.err 2>&1 -# ../src/readpstlog -f I dumper >big_mail.log - -$val ../src/readpst -cv -o output9 -d dumper Single2003-read.pst >out9.err 2>&1 - ../src/readpstlog -f I dumper >Single2003-read.log - -$val ../src/readpst -cv -o output10 -d dumper Single2003-unread.pst >out10.err 2>&1 - ../src/readpstlog -f I dumper >Single2003-unread.log - -$val ../src/readpst -cv -o output11 -d dumper ol2k3high.pst >out11.err 2>&1 - ../src/readpstlog -f I dumper >ol2k3high.log - -$val ../src/readpst -cv -o output12 -d dumper ol97high.pst >out12.err 2>&1 - ../src/readpstlog -f I dumper >ol97high.log - -$val ../src/readpst -cv -o output13 -d dumper returned_message.pst >out13.err 2>&1 - ../src/readpstlog -f I dumper >returned_message.log - -$val ../src/lspst -d dumper ams.pst >out14.err 2>&1 - ../src/readpstlog -f I dumper >ams.log - -rm -f dumper -