Docs/RCU: Correct sample code of qatomic_rcu_set
[qemu/ar7.git] / tests / qemu-iotests / 286
blobf64e0eccea30f17a55fbb7e2783ec8badd8c8404
1 #!/usr/bin/env bash
3 # Test qemu-img snapshot -l
5 # Copyright (C) 2019 Red Hat, Inc.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 seq=$(basename "$0")
22 echo "QA output created by $seq"
24 status=1 # failure is the default!
26 _cleanup()
28 _cleanup_test_img
30 trap "_cleanup; exit \$status" 0 1 2 3 15
32 # get standard environment, filters and checks
33 . ./common.rc
34 . ./common.filter
35 . ./common.qemu
37 _supported_fmt qcow2
38 _supported_proto file fuse
39 # Internal snapshots are (currently) impossible with refcount_bits=1,
40 # and generally impossible with external data files
41 _unsupported_imgopts 'refcount_bits=1[^0-9]' data_file
43 _make_test_img 64M
45 # Should be so long as to take up the whole field width
46 sn_name=abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz
48 # More memory will give us a larger VM state, i.e. one above 1 MB.
49 # This way, we get a number with a decimal point.
50 qemu_comm_method=monitor _launch_qemu -m 512 "$TEST_IMG"
52 _send_qemu_cmd $QEMU_HANDLE "savevm $sn_name" '(qemu)'
53 _send_qemu_cmd $QEMU_HANDLE 'quit' '(qemu)'
54 wait=yes _cleanup_qemu
56 # Check that all fields are separated by spaces.
57 # We first collapse all space sequences into one space each;
58 # then we turn every space-separated field into a '.';
59 # and finally, we name the '.'s so the output is not just a confusing
60 # sequence of dots.
62 echo 'Output structure:'
63 $QEMU_IMG snapshot -l "$TEST_IMG" | tail -n 1 | tr -s ' ' \
64 | sed -e 's/\S\+/./g' \
65 | sed -e 's/\./(snapshot ID)/' \
66 -e 's/\./(snapshot name)/' \
67 -e 's/\./(VM state size value)/' \
68 -e 's/\./(VM state size unit)/' \
69 -e 's/\./(snapshot date)/' \
70 -e 's/\./(snapshot time)/' \
71 -e 's/\./(VM clock)/'
73 # success, all done
74 echo "*** done"
75 rm -f $seq.full
76 status=0