Skip to content

Commit

Permalink
Adapt test to grub change ordering
Browse files Browse the repository at this point in the history
Signed-off-by: Itxaka <[email protected]>
  • Loading branch information
Itxaka committed Oct 11, 2024
1 parent c3213f5 commit 4c0fd8e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/autoinstall_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ var _ = Describe("kairos autoinstall test", Label("autoinstall-test"), func() {
Expect(out).To(ContainSubstring("boot_assessment_blk"))

cmdline, _ := vm.Sudo("cat /proc/cmdline")
Expect(cmdline).To(ContainSubstring("rd.emergency=reboot rd.shell=0 panic=5"))
Expect(cmdline).To(ContainSubstring("rd.emergency=reboot rd.shell=0"))
Expect(cmdline).To(ContainSubstring("panic=5"))
Expect(cmdline).To(ContainSubstring("rd.shell=0"))
})

By("checking writeable tmp", func() {
Expand Down

0 comments on commit 4c0fd8e

Please sign in to comment.