tests: adjust wait_for_text calls to work for systemd-initrd or old stage-1

This commit is contained in:
Lily Foster 2023-02-21 11:33:21 -05:00
parent d0d62973a0
commit 00a2e2c438
No known key found for this signature in database
GPG key ID: 49340081E484C893
5 changed files with 5 additions and 5 deletions

View file

@ -19,7 +19,7 @@ makeDiskoTest {
''; '';
enableOCR = true; enableOCR = true;
bootCommands = '' bootCommands = ''
machine.wait_for_text("Passphrase for") machine.wait_for_text("[Pp]assphrase for")
machine.send_chars("secretsecret\n") machine.send_chars("secretsecret\n")
''; '';
extraConfig = { extraConfig = {

View file

@ -18,7 +18,7 @@ makeDiskoTest {
''; '';
enableOCR = true; enableOCR = true;
bootCommands = '' bootCommands = ''
machine.wait_for_text("Passphrase for") machine.wait_for_text("[Pp]assphrase for")
machine.send_chars("secretsecret\n") machine.send_chars("secretsecret\n")
''; '';
extraConfig = { extraConfig = {

View file

@ -9,7 +9,7 @@ makeDiskoTest {
''; '';
enableOCR = true; enableOCR = true;
bootCommands = '' bootCommands = ''
machine.wait_for_text("Passphrase for") machine.wait_for_text("[Pp]assphrase for")
machine.send_chars("secretsecret\n") machine.send_chars("secretsecret\n")
''; '';
} }

View file

@ -19,7 +19,7 @@ makeDiskoTest {
''; '';
enableOCR = true; enableOCR = true;
bootCommands = '' bootCommands = ''
machine.wait_for_text("Passphrase for") machine.wait_for_text("[Pp]assphrase for")
machine.send_chars("secretsecret\n") machine.send_chars("secretsecret\n")
''; '';
extraConfig = { extraConfig = {

View file

@ -12,7 +12,7 @@ makeDiskoTest {
''; '';
enableOCR = true; enableOCR = true;
bootCommands = '' bootCommands = ''
machine.wait_for_text("passphrase for") machine.wait_for_text("(?:passphrase|key) for")
machine.send_chars("secretsecret\n") machine.send_chars("secretsecret\n")
''; '';
extraTestScript = '' extraTestScript = ''