better detect test succeeded
This commit is contained in:
parent
231c2cef03
commit
5f9ffa804f
2 changed files with 4 additions and 2 deletions
|
@ -17,7 +17,9 @@ in {
|
||||||
../../modules/outputs/ext4fs.nix
|
../../modules/outputs/ext4fs.nix
|
||||||
../../modules/outputs/tftpboot.nix
|
../../modules/outputs/tftpboot.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
hostname = "tftpboot-test";
|
||||||
# use extracted dts if it was null in the device
|
# use extracted dts if it was null in the device
|
||||||
# definition, use actual dts if provided
|
# definition, use actual dts if provided
|
||||||
hardware.dts.src = lib.mkOverride 500 dts;
|
hardware.dts.src = lib.mkOverride 500 dts;
|
||||||
|
|
|
@ -20,11 +20,11 @@ expect {
|
||||||
}
|
}
|
||||||
|
|
||||||
expect {
|
expect {
|
||||||
"#" { send "test -f /proc/device-tree/reserved-memory/phram-rootfs*/name && tty \r" }
|
"#" { send "test -f /proc/device-tree/reserved-memory/phram-rootfs*/name && hostname \r" }
|
||||||
timeout { exit 1 }
|
timeout { exit 1 }
|
||||||
}
|
}
|
||||||
|
|
||||||
expect {
|
expect {
|
||||||
"/dev/ttyS0" { exit 0 }
|
"tftpboot-test" { exit 0 }
|
||||||
timeout { exit 1 }
|
timeout { exit 1 }
|
||||||
}
|
}
|
Loading…
Reference in a new issue