search for: serious_error

Displaying 5 results from an estimated 5 matches for "serious_error".

2014 Nov 04
0
[PATCH 9/9] tests/qemu: isolate MD5 calculation in an own shared function
...isolation3_md5sum="$(md5sum isolation3.img | awk '{print $1}')" + isolation3_md5sum="$(do_md5 isolation3.img)" add3="add-drive-opts isolation3.img format:qcow2 readonly:true" cmds3=" part-disk /dev/sdc mbr @@ -92,14 +94,14 @@ function serious_error exit 1 } -if [ "$(md5sum isolation1.img | awk '{print $1}')" != "$isolation1_md5sum" ]; then +if [ "$(do_md5 isolation1.img)" != "$isolation1_md5sum" ]; then serious_error fi -if [ "$(md5sum isolation2.img | awk '{print $1}'...
2014 Sep 23
0
[PATCH 10/13] syntax-check: fix prohibit_test_minus_ao check
....sh b/tests/qemu/qemu-snapshot-isolation.sh index daa210f..31b3562 100755 --- a/tests/qemu/qemu-snapshot-isolation.sh +++ b/tests/qemu/qemu-snapshot-isolation.sh @@ -98,7 +98,7 @@ fi if [ "$(md5sum isolation2.img | awk '{print $1}')" != "$isolation2_md5sum" ]; then serious_error fi -if [ "$supports_qcow2" = "yes" -a \ +if [ "$supports_qcow2" = "yes" && \ "$(md5sum isolation3.img | awk '{print $1}')" != "$isolation3_md5sum" ]; then serious_error fi diff --git a/tests/regressions/rhbz563...
2014 Nov 04
13
[PATCH 0/9] Small bits of non-Linux porting - #2
Hi, continuing what started a couple of weeks ago [1], the attached patch series continues the work in making it easier to build and run libguestfs (in fixed appliance mode) on OSes different than Linux. The provided changes should cause no functional changes on Linux. [1] https://www.redhat.com/archives/libguestfs/2014-October/msg00176.html Thanks, -- Pino Pino Toscano (9): build: check
2014 Sep 23
27
[PATCH 00/13] syntax-check
Hi Rich, This series includes patches to make `make syntax-check` pass. Some of the fix require change to maint.mk, but the file is not in git repo. Is it intended? Thanks! Hu Tao (13): syntax-check: dirty hack to pass bindtextdomain check syntax-check: fix error_message_period check syntax-check: fix makefile_at_at_check syntax-check: fix prohibit_assert_without_use check
2017 Mar 31
6
[PATCH 0/3] Fix some quoting issues.
Fix some quoting issues by introducing Unicode quotes. Note this intentionally only affects end-user messages and documentation. Rich.