From 283061d7a8bcf045e4fad98956d139332220ca27 Mon Sep 17 00:00:00 2001 From: shadowlover_R <1264063387@qq.com> Date: Wed, 23 Jun 2021 11:13:55 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E8=BD=BB=E5=86=85=E6=A0=B8=E3=80=91?= =?UTF-8?q?=E3=80=90release=E3=80=91=E5=88=A0=E9=99=A4fs=5Fposix=E6=A8=A1?= =?UTF-8?q?=E5=9D=97=E5=9C=A8storage=E4=B8=8B=E7=9A=84=E4=B8=8D=E7=A8=B3?= =?UTF-8?q?=E5=AE=9A=E6=B5=8B=E8=AF=95=E7=94=A8=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: shadowlover_R <1264063387@qq.com> Change-Id: I998598da7f98258fef153d44677ae7b200f40ae0 --- kernel_lite/fs_posix/BUILD.gn | 1 - kernel_lite/fs_posix/vfat_storage/BUILD.gn | 45 --------------------- kernel_lite/fs_posix/vfat_storage/Test.json | 25 ------------ 3 files changed, 71 deletions(-) delete mode 100755 kernel_lite/fs_posix/vfat_storage/BUILD.gn delete mode 100644 kernel_lite/fs_posix/vfat_storage/Test.json diff --git a/kernel_lite/fs_posix/BUILD.gn b/kernel_lite/fs_posix/BUILD.gn index ebdc4100545..648403d0054 100644 --- a/kernel_lite/fs_posix/BUILD.gn +++ b/kernel_lite/fs_posix/BUILD.gn @@ -13,7 +13,6 @@ group("ActsFSTest") { deps = [ - "./vfat_storage:ActsVFATstorageTest", "./jffs:ActsJFFS2Test", "./nfs:ActsNFSTest", "./vfat:ActsVFATTest", diff --git a/kernel_lite/fs_posix/vfat_storage/BUILD.gn b/kernel_lite/fs_posix/vfat_storage/BUILD.gn deleted file mode 100755 index 9c9384908b5..00000000000 --- a/kernel_lite/fs_posix/vfat_storage/BUILD.gn +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright (c) 2020-2021 Huawei Device Co., Ltd. -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import("//test/xts/tools/lite/build/suite_lite.gni") - -hcpptest_suite("ActsVFATstorageTest") { - suite_name = "acts" - sources = [ - "../src/FileSystemTest.cpp", - "../src/FsDirentTest.cpp", - "../src/FsFcntlTest.cpp", - "../src/FsOtherTest.cpp", - "../src/FsStatTest.cpp", - "../src/FsStdioTest.cpp", - "../src/FsStdlibTest.cpp", - "../src/FsUnistdTest.cpp", - ] - include_dirs = [ - "//test/xts/tools/hctest/include", - "//test/xts/acts/kernel_lite/utils", - ] - deps = [ - "//test/xts/acts/kernel_lite/utils:libfs", - "//test/xts/acts/kernel_lite/utils:libutils", - ] - cflags_cc = [ - "-Wno-write-strings", - "-Wno-sign-compare", - ] - defines = [ - "LITE_FS_VFAT", - "TOP_DIR=\"/storage\"", - "TOP_DIR_MOUNT_INFO=\"/storage vfat\"", - ] -} diff --git a/kernel_lite/fs_posix/vfat_storage/Test.json b/kernel_lite/fs_posix/vfat_storage/Test.json deleted file mode 100644 index ddf8aafefef..00000000000 --- a/kernel_lite/fs_posix/vfat_storage/Test.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "description": "Config for kernel_lite test cases", - "environment": [ - { - "type": "device", - "label": "ipcamera" - } - ], - "kits": [ - { - "type": "MountKit", - "server": "NfsServer", - "mount": [ - { - "source": "testcases/kernel", - "target": "/test_root/kernel" - } - ] - } - ], - "driver": { - "type": "CppTestLite", - "execute": "/test_root/kernel/ActsVFATTest.bin" - } -} \ No newline at end of file -- Gitee