Skip to content

Commit efb1396

Browse files
authored
always tee test linuxkit run to tty, so if it gets stuck, we see why (linuxkit#4107)
Signed-off-by: Avi Deitcher <[email protected]>
1 parent 76b5197 commit efb1396

File tree

113 files changed

+117
-112
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+117
-112
lines changed

test/cases/000_build/020_binds/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ trap clean_up EXIT
2020
# Test code goes here
2121

2222
linuxkit build --format kernel+initrd --name ${NAME} test.yml
23-
RESULT="$(linuxkit run --disk file=${DISK},size=32M ${NAME})"
23+
RESULT="$(linuxkitrun --disk file=${DISK},size=32M ${NAME})"
2424
echo "${RESULT}"
2525
echo "${RESULT}" | grep -q "suite PASSED"
2626

test/cases/000_build/070_volumes/000_rw_on_rw/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ trap clean_up EXIT
1919
# Test code goes here
2020

2121
linuxkit build --format kernel+initrd --name ${NAME} test.yml
22-
RESULT="$(linuxkit run ${NAME})"
22+
RESULT="$(linuxkitrun ${NAME})"
2323
echo "${RESULT}"
2424
echo "${RESULT}" | grep -q "suite PASSED"
2525

test/cases/000_build/070_volumes/001_ro_on_ro/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ trap clean_up EXIT
1919
# Test code goes here
2020

2121
linuxkit build --format kernel+initrd --name ${NAME} test.yml
22-
RESULT="$(linuxkit run ${NAME})"
22+
RESULT="$(linuxkitrun ${NAME})"
2323
echo "${RESULT}"
2424
echo "${RESULT}" | grep -q "suite PASSED"
2525

test/cases/000_build/070_volumes/003_ro_on_rw/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ trap clean_up EXIT
1919
# Test code goes here
2020

2121
linuxkit build --format kernel+initrd --name ${NAME} test.yml
22-
RESULT="$(linuxkit run ${NAME})"
22+
RESULT="$(linuxkitrun ${NAME})"
2323
echo "${RESULT}"
2424
echo "${RESULT}" | grep -q "suite PASSED"
2525

test/cases/000_build/070_volumes/004_blank/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ trap clean_up EXIT
1919
# Test code goes here
2020

2121
linuxkit build --format kernel+initrd --name ${NAME} test.yml
22-
RESULT="$(linuxkit run ${NAME})"
22+
RESULT="$(linuxkitrun ${NAME})"
2323
echo "${RESULT}"
2424
echo "${RESULT}" | grep -q "suite PASSED"
2525

test/cases/000_build/070_volumes/005_image/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ trap clean_up EXIT
1919
# Test code goes here
2020

2121
linuxkit build --format kernel+initrd --name ${NAME} test.yml
22-
RESULT="$(linuxkit run ${NAME})"
22+
RESULT="$(linuxkitrun ${NAME})"
2323
echo "${RESULT}"
2424
echo "${RESULT}" | grep -q "suite PASSED"
2525

test/cases/000_build/070_volumes/006_mount_types/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ trap clean_up EXIT
1919
# Test code goes here
2020

2121
linuxkit build --format kernel+initrd --name ${NAME} test.yml
22-
RESULT="$(linuxkit run ${NAME})"
22+
RESULT="$(linuxkitrun ${NAME})"
2323
echo "${RESULT}"
2424
echo "${RESULT}" | grep -q "suite PASSED"
2525

test/cases/020_kernel/011_config_5.4.x/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ trap clean_up EXIT
1818

1919
# Test code goes here
2020
linuxkit build --format kernel+initrd --name "${NAME}" test.yml
21-
RESULT="$(linuxkit run ${NAME})"
21+
RESULT="$(linuxkitrun ${NAME})"
2222
echo "${RESULT}" | grep -q "suite PASSED"
2323

2424
exit 0

test/cases/020_kernel/013_config_5.10.x/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ trap clean_up EXIT
1818

1919
# Test code goes here
2020
linuxkit build --format kernel+initrd --name "${NAME}" test.yml
21-
RESULT="$(linuxkit run ${NAME})"
21+
RESULT="$(linuxkitrun ${NAME})"
2222
echo "${RESULT}" | grep -q "suite PASSED"
2323

2424
exit 0

test/cases/020_kernel/016_config_5.15.x/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ trap clean_up EXIT
1818

1919
# Test code goes here
2020
linuxkit build --format kernel+initrd --name "${NAME}" test.yml
21-
RESULT="$(linuxkit run ${NAME})"
21+
RESULT="$(linuxkitrun ${NAME})"
2222
echo "${RESULT}" | grep -q "suite PASSED"
2323

2424
exit 0

test/cases/020_kernel/019_config_6.6.x/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ trap clean_up EXIT
1818

1919
# Test code goes here
2020
linuxkit build --format kernel+initrd --name "${NAME}" test.yml
21-
RESULT="$(linuxkit run ${NAME})"
21+
RESULT="$(linuxkitrun ${NAME})"
2222
echo "${RESULT}" | grep -q "suite PASSED"
2323

2424
exit 0

test/cases/020_kernel/111_kmod_5.4.x/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ docker build -t ${IMAGE_NAME} .
2525

2626
# Build and run a LinuxKit image with kernel module (and test script)
2727
linuxkit build --docker --format kernel+initrd --name "${NAME}" test.yml
28-
RESULT="$(linuxkit run ${NAME})"
28+
RESULT="$(linuxkitrun ${NAME})"
2929
echo "${RESULT}" | grep -q "Hello LinuxKit"
3030

3131
exit 0

test/cases/020_kernel/113_kmod_5.10.x/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ docker build -t ${IMAGE_NAME} .
2525

2626
# Build and run a LinuxKit image with kernel module (and test script)
2727
linuxkit build --docker --format kernel+initrd --name "${NAME}" test.yml
28-
RESULT="$(linuxkit run ${NAME})"
28+
RESULT="$(linuxkitrun ${NAME})"
2929
echo "${RESULT}" | grep -q "Hello LinuxKit"
3030

3131
exit 0

test/cases/020_kernel/116_kmod_5.15.x/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ docker build -t ${IMAGE_NAME} .
2525

2626
# Build and run a LinuxKit image with kernel module (and test script)
2727
linuxkit build --docker --format kernel+initrd --name "${NAME}" test.yml
28-
RESULT="$(linuxkit run ${NAME})"
28+
RESULT="$(linuxkitrun ${NAME})"
2929
echo "${RESULT}" | grep -q "Hello LinuxKit"
3030

3131
exit 0

test/cases/020_kernel/119_kmod_6.6.x/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ docker build -t ${IMAGE_NAME} .
2525

2626
# Build and run a LinuxKit image with kernel module (and test script)
2727
linuxkit build --docker --format kernel+initrd --name "${NAME}" test.yml
28-
RESULT="$(linuxkit run ${NAME})"
28+
RESULT="$(linuxkitrun ${NAME})"
2929
echo "${RESULT}" | grep -q "Hello LinuxKit"
3030

3131
exit 0

test/cases/020_kernel/200_namespace/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/010_echo-tcp-ipv4-short-1con-single/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/011_echo-tcp-ipv4-short-10con-single/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/012_echo-tcp-ipv4-short-5con-multi/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/015_echo-tcp-ipv4-long-1con-single/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/016_echo-tcp-ipv4-long-10con-single/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/017_echo-tcp-ipv4-long-5con-multi/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/020_echo-tcp-ipv6-short-1con-single/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/021_echo-tcp-ipv6-short-10con-single/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/022_echo-tcp-ipv6-short-5con-multi/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/025_echo-tcp-ipv6-long-1con-single/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/026_echo-tcp-ipv6-long-10con-single/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/027_echo-tcp-ipv6-long-5con-multi/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/030_echo-udp-ipv4-short-1con-single/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/031_echo-udp-ipv4-short-10con-single/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

test/cases/020_kernel/200_namespace/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clean_up() {
1717
trap clean_up EXIT
1818

1919
linuxkit build --format kernel+initrd --name ${NAME} ../../common.yml test.yml
20-
RESULT="$(linuxkit run -cpus 2 ${NAME})"
20+
RESULT="$(linuxkitrun -cpus 2 ${NAME})"
2121
echo "${RESULT}" | grep -q "suite PASSED"
2222

2323
exit 0

0 commit comments

Comments
 (0)