31 lines
1.6 KiB
Diff
31 lines
1.6 KiB
Diff
From 44d15a7451a922ca7266b756d3f9a83908199cb3 Mon Sep 17 00:00:00 2001
|
|
From: zhangxiaoyu <zhangxiaoyu58@huawei.com>
|
|
Date: Tue, 23 Jan 2024 10:35:59 +0800
|
|
Subject: [PATCH 10/43] open run container with dev volume testcase
|
|
|
|
Signed-off-by: zhangxiaoyu <zhangxiaoyu58@huawei.com>
|
|
---
|
|
CI/test_cases/container_cases/bind_special_dir.sh | 5 ++---
|
|
1 file changed, 2 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/CI/test_cases/container_cases/bind_special_dir.sh b/CI/test_cases/container_cases/bind_special_dir.sh
|
|
index 545d5099..04bf437a 100755
|
|
--- a/CI/test_cases/container_cases/bind_special_dir.sh
|
|
+++ b/CI/test_cases/container_cases/bind_special_dir.sh
|
|
@@ -40,10 +40,9 @@ function test_bind_special_dir()
|
|
# when create container in container, runc not support to mount /dev
|
|
# adapt fedora base image, we just remove rshared option of sys dir
|
|
if [ $runtime == "runc" ]; then
|
|
- c_id=`isula run -itd -v -itd --runtime=$runtime -v /sys/fs:/sys/fs:rw -v /proc:/proc -v /dev/pts:/dev/pts:rw busybox sh`
|
|
+ c_id=`isula run -itd --runtime=$runtime -v /sys/fs:/sys/fs:rw -v /proc:/proc -v /dev/pts:/dev/pts:rw busybox sh`
|
|
else
|
|
- # lxc 5.X cannot support mount /dev directory
|
|
- c_id=`isula run --runtime=$runtime -itd -v -itd -v /sys/fs:/sys/fs:rw -v /proc:/proc busybox sh`
|
|
+ c_id=`isula run --runtime=$runtime -itd -v /sys/fs:/sys/fs:rw -v /proc:/proc -v /dev:/dev:ro -v /dev/pts:/dev/pts:rw busybox sh`
|
|
fi
|
|
[[ $? -ne 0 ]] && msg_err "${FUNCNAME[0]}:${LINENO} - failed to run container with image: ${image}" && ((ret++))
|
|
|
|
--
|
|
2.34.1
|
|
|