add ext4 as rootfsType

This commit is contained in:
Daniel Barlow
2023-11-06 21:52:31 +00:00
parent 6bbff2f5b3
commit a9d847e2c0
6 changed files with 102 additions and 2 deletions

11
tests/ext4/script.expect Normal file
View File

@@ -0,0 +1,11 @@
set timeout 10
spawn socat unix-connect:vm/console -
send "\r\n"
expect "login:" { send "root\r\n" }
expect "#"
send "echo HELLO WORLD > /hello\r\n"
expect "#"
send "cat /hello\r\n"
expect 'HELLO WORLD'
close