@@ -16,8 +16,6 @@ function teardown() {
1616 runc run -d --console-socket $CONSOLE_SOCKET test_busybox
1717 [ " $status " -eq 0 ]
1818
19- wait_for_container 15 1 test_busybox
20-
2119 runc exec test_busybox echo Hello from exec
2220 [ " $status " -eq 0 ]
2321 echo text echoed = " '" " ${output} " " '"
@@ -29,8 +27,6 @@ function teardown() {
2927 runc run -d --console-socket $CONSOLE_SOCKET test_busybox
3028 [ " $status " -eq 0 ]
3129
32- wait_for_container 15 1 test_busybox
33-
3430 runc exec --pid-file pid.txt test_busybox echo Hello from exec
3531 [ " $status " -eq 0 ]
3632 echo text echoed = " '" " ${output} " " '"
@@ -56,8 +52,6 @@ function teardown() {
5652 runc run -d -b $BUSYBOX_BUNDLE --console-socket $CONSOLE_SOCKET test_busybox
5753 [ " $status " -eq 0 ]
5854
59- wait_for_container 15 1 test_busybox
60-
6155 runc exec --pid-file pid.txt test_busybox echo Hello from exec
6256 [ " $status " -eq 0 ]
6357 echo text echoed = " '" " ${output} " " '"
@@ -77,8 +71,6 @@ function teardown() {
7771 runc run -d --console-socket $CONSOLE_SOCKET test_busybox
7872 [ " $status " -eq 0 ]
7973
80- wait_for_container 15 1 test_busybox
81-
8274 runc exec test_busybox ls -la
8375 [ " $status " -eq 0 ]
8476 [[ ${lines[0]} == * " total" * ]]
@@ -91,8 +83,6 @@ function teardown() {
9183 runc run -d --console-socket $CONSOLE_SOCKET test_busybox
9284 [ " $status " -eq 0 ]
9385
94- wait_for_container 15 1 test_busybox
95-
9686 runc exec --cwd /bin test_busybox pwd
9787 [ " $status " -eq 0 ]
9888 [[ ${output} == " /bin" ]]
@@ -103,8 +93,6 @@ function teardown() {
10393 runc run -d --console-socket $CONSOLE_SOCKET test_busybox
10494 [ " $status " -eq 0 ]
10595
106- wait_for_container 15 1 test_busybox
107-
10896 runc exec --env RUNC_EXEC_TEST=true test_busybox env
10997 [ " $status " -eq 0 ]
11098
@@ -119,8 +107,6 @@ function teardown() {
119107 runc run -d --console-socket $CONSOLE_SOCKET test_busybox
120108 [ " $status " -eq 0 ]
121109
122- wait_for_container 15 1 test_busybox
123-
124110 runc exec --user 1000:1000 test_busybox id
125111 [ " $status " -eq 0 ]
126112
0 commit comments