Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Guest test bugfix 0227 #189

Merged
merged 2 commits into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion guest-test/guest.test_executor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,6 @@ if [ "${BASH_SOURCE[0]}" -ef "$0" ]; then

cd "$SCRIPT_DIR" || die "fail to switch to $SCRIPT_DIR"
# select specific "$FEATURE.test_executor.sh" by $FEATURE
../"$FEATURE_PATH"/"$FEATURE".test_executor.sh || \
../"$FEATURE_PATH"/"$FEATURE".guest_test_executor.sh || \
die "Failed on $TESTCASE of $FEATURE"
fi
2 changes: 1 addition & 1 deletion tdx-guest/tdx.guest_test_executor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ case "$TESTCASE" in
;;
TD_VE_HALT)
guest_test_prepare tdx_test_module.sh
guest_test_source_code tdx_halt_test_module halt_test || \
guest_test_source_code tdx_halt_test_module halt_test.ko || \
die "Failed to prepare guest test kernel module for $TESTCASE"
guest_test_entry tdx_test_module.sh "halt_test" || \
die "Failed on $TESTCASE tdx_test_module.sh halt_test"
Expand Down
Loading