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
22 lines
379 B
Bash
Executable File
22 lines
379 B
Bash
Executable File
#!/usr/bin/env bash
|
|
. $TESTDIR/scripts/test-lib.sh
|
|
TEST_SCRIPT=$1
|
|
|
|
QEMU_CMD="$DEFAULT_QEMU_CMD \
|
|
-serial stdio \
|
|
-serial file:$(get_test_output_file $TEST_SCRIPT) \
|
|
-monitor none \
|
|
-hda $OUTPUT_IMAGE"
|
|
|
|
img_add_qemu_cmd() {
|
|
QEMU_CMD+=" $@"
|
|
}
|
|
|
|
source $TEST_SCRIPT
|
|
|
|
on_build
|
|
|
|
img_inst $TEST_SCRIPT /kexec-kdump-test/test.sh
|
|
|
|
echo $QEMU_CMD > $(get_test_qemu_cmd_file $TEST_SCRIPT)
|