]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/six-vol-test
fix fifo tests
[bacula/bacula] / regress / tests / six-vol-test
1 #!/bin/sh
2 #
3 # Create a 60MB file with random bytes. Back it up to 6 Volumes
4 #   each constrained to 10MB using the automatic labeling feature.
5 #
6 TestName="six-vol-test"
7 JobName=SixVol
8 . scripts/functions
9 set_debug 0
10
11 if test ! -c /dev/urandom ; then
12    echo "No random device. Test skipped.\n"
13    exit 0
14 fi
15
16 scripts/cleanup
17 scripts/copy-testa-confs
18 echo "${cwd}/tmp/largefile" >/tmp/file-list
19 # Create 56MB file with random data
20 echo "Creating a 56MB file with random data ..."
21 dd if=/dev/urandom of=${cwd}/tmp/largefile bs=1024 count=55000
22 echo "largefile created"
23
24 change_jobname MultiVol $JobName
25 start_test
26
27 cat <<END_OF_DATA >tmp/bconcmds
28 @output /dev/null
29 messages
30 @$out tmp/log1.out
31 run job=$JobName storage=File yes
32 wait
33 list volumes
34 messages
35 @# 
36 @# now do a restore
37 @#
38 @$out tmp/log2.out
39 restore where=${cwd}/tmp/bacula-restores select storage=File
40 unmark *
41 mark *
42 done
43 yes
44 wait
45 messages
46 @output
47 quit
48 END_OF_DATA
49
50 run_bacula
51 check_for_zombie_jobs storage=File
52 stop_bacula
53
54 check_two_logs
55 diff tmp/largefile  tmp/bacula-restores${cwd}/tmp/largefile 2>&1 >/dev/null
56 dstat=$?
57 end_test