[PATCH 03/14] discover/grub2: test for (ignored) --no-floppy argument

Jeremy Kerr jk at ozlabs.org
Wed Nov 20 13:42:55 AEDT 2019


--no-floppy is used almost everywhere, so add it to the tests. The code
will already ignore unknown arguments, but ensure that this works OK.

Signed-off-by: Jeremy Kerr <jk at ozlabs.org>
---
 test/parser/test-grub2-search-args.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/test/parser/test-grub2-search-args.c b/test/parser/test-grub2-search-args.c
index ffce853..0eb5762 100644
--- a/test/parser/test-grub2-search-args.c
+++ b/test/parser/test-grub2-search-args.c
@@ -9,8 +9,10 @@
 search a
 search --set=v1 b
 search --set v2 c
+search --set=v3 --no-floppy d
+search --no-floppy --set=v4 e
 
-menuentry $root$v1$v2 {
+menuentry $root$v1$v2$v3$v4 {
     linux /vmlinux
 }
 
@@ -29,5 +31,5 @@ void run_test(struct parser_test *test)
 
 	check_boot_option_count(ctx, 1);
 	opt = get_boot_option(ctx, 0);
-	check_name(opt, "abc");
+	check_name(opt, "abcde");
 }
-- 
2.20.1



More information about the Petitboot mailing list