加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0006-skip-testcase-23-since-current-kernel-version-not-su.patch 811 Bytes
一键复制 编辑 原始数据 按行查看 历史
From 385c1b9eb28e1cc1f64ddedb4a64aa2effa13d5c Mon Sep 17 00:00:00 2001
From: wangzhiqiang <wangzhiqiang95@huawei.com>
Date: Thu, 3 Nov 2022 16:24:49 +0800
Subject: [PATCH] skip testcase 23 since current kernel version not support
current kernel version of obs not support run testcase 23,
so skip it to avoild build error.
issue: https://gitee.com/src-openeuler/libaio/issue/I5XELL
---
harness/runtests.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/harness/runtests.sh b/harness/runtests.sh
index e9ceec8..a62bae7 100755
--- a/harness/runtests.sh
+++ b/harness/runtests.sh
@@ -9,6 +9,9 @@ echo "Test run starting at" `date`
while [ $# -ge 1 ] ; do
this_test=$1
shift
+ if [ $this_test = "cases/23.p" ];then
+ continue
+ fi
echo "Starting $this_test"
$this_test 2>&1
res=$?
--
2.33.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化