Merge pull request #4643 from cyphar/dmz-rename

libcontainer: rename dmz -> exeseal
This commit is contained in:
Kir Kolyshkin
2025-02-24 21:42:27 -08:00
committed by GitHub
6 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -131,10 +131,10 @@ function teardown() {
runc --debug run test_hello
[ "$status" -eq 0 ]
[[ "$output" = *"Hello World"* ]]
[[ "$output" = *"runc-dmz: using /proc/self/exe clone"* ]]
[[ "$output" = *"runc exeseal: using /proc/self/exe clone"* ]]
# runc will use fsopen("overlay") if it can.
if can_fsopen overlay; then
[[ "$output" = *"runc-dmz: using overlayfs for sealed /proc/self/exe"* ]]
[[ "$output" = *"runc exeseal: using overlayfs for sealed /proc/self/exe"* ]]
fi
}