Mercurial > libpst
annotate regression/regression-tests.bash @ 55:0cdbd066f65a stable-0-6-6
add missing news items, add reference to mercurial repository in the documentation
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Thu, 31 Jan 2008 22:15:29 -0800 |
parents | 034641c26ab9 |
children | 97b7706bdda2 |
rev | line source |
---|---|
35 | 1 #!/bin/bash |
2 | |
41
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
36
diff
changeset
|
3 val="valgrind --leak-check=full" |
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
36
diff
changeset
|
4 |
48 | 5 for i in {1..8}; do |
35 | 6 rm -rf output$i |
7 mkdir output$i | |
8 done | |
9 | |
44 | 10 |
49 | 11 $val ../src/pst2ldif -b 'o=ams-cc.com, c=US' -c 'newPerson' ams.pst >ams.err 2>&1 |
12 $val ../src/readpst -cv -o output1 ams.pst >out1.err 2>&1 | |
13 $val ../src/readpst -cl -r -o output2 ams.pst >out2.err 2>&1 | |
14 $val ../src/readpst -S -o output3 ams.pst >out3.err 2>&1 | |
15 $val ../src/readpst -M -o output4 ams.pst >out4.err 2>&1 | |
48 | 16 |
49 | 17 $val ../src/readpst -o output5 -d dumper mbmg.archive.pst >out5.err 2>&1 |
18 ../src/readpstlog -f I dumper >mbmg.archive.log | |
46 | 19 |
49 | 20 $val ../src/readpst -o output6 -d dumper test.pst >out6.err 2>&1 |
21 ../src/readpstlog -f I dumper >dumpertest.log | |
22 | |
23 $val ../src/readpst -cv -o output7 -d dumper sample_64.pst >out7.err 2>&1 | |
24 ../src/readpstlog -f I dumper >sample_64.log | |
43 | 25 |
48 | 26 $val ../src/readpst -cv -o output8 -d dumper big_mail.pst >out8.err 2>&1 |
27 ../src/readpstlog -f I dumper >big_mail.log | |
43 | 28 |
50 | 29 $val ../src/lspst -d dumper ams.pst >out9.err 2>&1 |
30 ../src/readpstlog -f I dumper >ams.log | |
35 | 31 |
52 | 32 rm -f dumper |
48 | 33 |