Docs/RCU: Correct sample code of qatomic_rcu_set
[qemu/ar7.git] / tests / qemu-iotests / 282
blob27da2a002397a61a8c86a78c1ec2310279a947b4
1 #!/usr/bin/env bash
3 # Test qemu-img file cleanup for LUKS when using a non-UTF8 secret
5 # Copyright (C) 2020, IBM Corporation.
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!
25 TEST_IMAGE_FILE='vol.img'
27 _cleanup()
29 _cleanup_test_img
30 rm non_utf8_secret
31 rm -f $TEST_IMAGE_FILE
33 trap "_cleanup; exit \$status" 0 1 2 3 15
35 # get standard environment, filters and checks
36 . ./common.rc
37 . ./common.filter
39 _supported_fmt luks
40 _supported_proto generic
42 echo "== Create non-UTF8 secret =="
43 echo -n -e '\x3a\x3c\x3b\xff' > non_utf8_secret
44 SECRET="secret,id=sec0,file=non_utf8_secret"
46 echo "== Throws an error because of invalid UTF-8 secret =="
47 $QEMU_IMG create -f $IMGFMT --object $SECRET -o "key-secret=sec0" $TEST_IMAGE_FILE 4M
49 echo "== Image file should not exist after the error =="
50 if test -f "$TEST_IMAGE_FILE"; then
51 exit 1
54 echo "== Create a stub image file and run qemu-img again =="
55 touch $TEST_IMAGE_FILE
56 $QEMU_IMG create -f $IMGFMT --object $SECRET -o "key-secret=sec0" $TEST_IMAGE_FILE 4M
58 echo "== Pre-existing image file should also be deleted after the error =="
59 if test -f "$TEST_IMAGE_FILE"; then
60 exit 1
63 # success, all done
64 echo "*** done"
65 rm -f $seq.full
66 status=0