f5bf4978d8
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/kexec-tools#041ba89902961b5490a7143d9596dc00d732cba0
16 lines
257 B
Bash
Executable File
16 lines
257 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# A test example that do nothing
|
|
|
|
# Executed before VM starts
|
|
on_build() {
|
|
:
|
|
}
|
|
|
|
# Executed when VM boots
|
|
on_test() {
|
|
:
|
|
# call get_test_boot_count to get boot cound
|
|
# call test_passed if test passed
|
|
# call test_failed if test passed
|
|
}
|