genimage/test/exec.config
Michael Olbrich 2b1f054ed1 test: add tests to check exec-* commands
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
2020-08-28 16:37:38 +02:00

28 lines
437 B
Plaintext

image file1.img {
file {}
name = "exec-test"
exec-pre = "./exec-check.sh file1.img"
}
image file2.img {
file {}
name = "exec-test"
mountpoint = "/"
exec-post = "./exec-check.sh file2.img"
}
image file3.img {
file {}
name = "exec-test"
empty = true
exec-pre = "./exec-check.sh file3.img empty"
}
image file4.img {
file {}
name = "exec-test"
empty = true
mountpoint = "/"
exec-post = "./exec-check.sh file4.img empty"
}