加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0071-Remove-sandboxer-ut-if-sandboxer-is-not-enabled.patch 815 Bytes
一键复制 编辑 原始数据 按行查看 历史
liuxu 提交于 2024-04-20 19:31 . upgrade from upstream
From 7c0c79e8ad4680f97651dd52721344961c803c15 Mon Sep 17 00:00:00 2001
From: xuxuepeng <xuxuepeng1@huawei.com>
Date: Sat, 20 Apr 2024 11:48:56 +0800
Subject: [PATCH 71/73] Remove sandboxer ut if sandboxer is not enabled
Signed-off-by: xuxuepeng <xuxuepeng1@huawei.com>
---
test/sandbox/CMakeLists.txt | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/test/sandbox/CMakeLists.txt b/test/sandbox/CMakeLists.txt
index 68397477..38d7ccb9 100644
--- a/test/sandbox/CMakeLists.txt
+++ b/test/sandbox/CMakeLists.txt
@@ -1,5 +1,7 @@
project(iSulad_UT)
-add_subdirectory(controller)
-add_subdirectory(sandbox_manager)
-add_subdirectory(sandbox)
+if (ENABLE_SANDBOXER)
+ add_subdirectory(controller)
+ add_subdirectory(sandbox_manager)
+ add_subdirectory(sandbox)
+endif()
--
2.34.1
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化