]> git.proxmox.com Git - grub2.git/commitdiff
* tests/core_compress_test.in: Use full arguments as grub-mkimage-extra
authorVladimir Serbinenko <phcoder@gmail.com>
Sun, 17 Nov 2013 01:09:15 +0000 (02:09 +0100)
committerVladimir Serbinenko <phcoder@gmail.com>
Sun, 17 Nov 2013 01:09:15 +0000 (02:09 +0100)
now needs full arguments.

ChangeLog
tests/core_compress_test.in

index 813074e758d51623aa418e2a301f3857b9aed589..23011288e4d91f004f597852be4c97b3b452e093 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-11-17  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * tests/core_compress_test.in: Use full arguments as grub-mkimage-extra
+       now needs full arguments.
+
 2013-11-17  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * util/grub-mkrescue.c (main): Add trailing \n in
index f97c0240b8f85504d34e8a87038493cc3f407899..1003587ccca65616b0c7e3c1b90353ef7f459299 100644 (file)
@@ -27,10 +27,10 @@ case "${grub_modinfo_target_cpu}-${grub_modinfo_platform}" in
 esac
 
 
-if [ "$(echo hello | "${grubshell}" --grub-mkimage-extra=-C --grub-mkimage-extra=xz)" != "Hello World" ]; then
+if [ "$(echo hello | "${grubshell}" --grub-mkimage-extra=--compress=xz)" != "Hello World" ]; then
    exit 1
 fi
 
-if [ "$(echo hello | "${grubshell}" --grub-mkimage-extra=-C --grub-mkimage-extra=none)" != "Hello World" ]; then
+if [ "$(echo hello | "${grubshell}" --grub-mkimage-extra=--compress=none)" != "Hello World" ]; then
    exit 1
 fi