浏览代码

integration-test: make more resilient against different GRUB versions

Philipp Schuster 1 年之前
父节点
当前提交
4efad12e13
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      integration-test/bins/multiboot2_payload/src/verify/grub.rs

+ 1 - 1
integration-test/bins/multiboot2_payload/src/verify/grub.rs

@@ -23,7 +23,7 @@ fn basic_sanity_checks(mbi: &BootInformation) -> anyhow::Result<()> {
         .map_err(anyhow::Error::msg)?
         .cmdline()
         .map_err(anyhow::Error::msg)?;
-    assert_eq!(bootloader_name, "GRUB 2.06");
+    assert!(bootloader_name.starts_with("GRUB 2."));
     assert_eq!(cmdline, "some commandline arguments");
 
     Ok(())