diff --git a/commonlibrary/BUILD.gn b/commonlibrary/BUILD.gn index 95ed8868633de7abdf57a72ad4a4034eddebef56..36dcfb3586c9f0d98e8003dd2ac13a4bdd00f6ae 100644 --- a/commonlibrary/BUILD.gn +++ b/commonlibrary/BUILD.gn @@ -15,9 +15,6 @@ import("//test/xts/tools/build/suite.gni") group("commonlibrary") { testonly = true if (is_standard_system) { - deps = [ - "ets_utils:ets_utils", - "toolchain:toolchain", - ] + deps = [ "ets_utils:ets_utils" ] } } diff --git a/commonlibrary/toolchain/BUILD.gn b/commonlibrary/toolchain/BUILD.gn deleted file mode 100644 index be6736db53843ade7285edfdbcbf87b29ff9f2bc..0000000000000000000000000000000000000000 --- a/commonlibrary/toolchain/BUILD.gn +++ /dev/null @@ -1,123 +0,0 @@ -# Copyright (C) 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("//build/ohos_var.gni") -import("//test/xts/tools/build/suite.gni") - -group("toolchain") { - testonly = true - deps = [ "//third_party/musl:libctest" ] - if (is_standard_system) { - deps += [ ":tar_dllib" ] - } -} - -action("tar_testcases") { - testonly = true - deps = [ - "libc-test:ActToolChainTest", - "//third_party/musl:libctest", - ] - project_dir = rebase_path(".") - print("project_dir-58:", project_dir) - project_dird = rebase_path("tar_files.py", ".", root_out_dir) - print("project_dird-60:", project_dird) - - project_dirf = project_dir + "/" + project_dird - print("project_dirf-64:", project_dirf) - - test_path = string_replace(project_dirf, "/tar_files.py", "") - script = rebase_path( - "//test/xts/acts/commonlibrary/toolchain/libc-test/tar_files.py") - - _outputs = [ "$target_out_dir/libc-test.tar" ] - outputs = _outputs - - input_path = rebase_path("$test_path/tests/unittest/libc-test") - output_path = rebase_path("$test_path/suites/acts/testcases/libc-test.tar") - - print("root_build_dir-49", root_build_dir) - args = [ - "--input_path", - input_path, - "--output_path", - output_path, - "--temp_path", - "./libc-test", - ] -} - -action("tar_dllib") { - testonly = true - deps = [ ":tar_testcases" ] - project_dir = rebase_path(".") - print("project_dir-58:", project_dir) - project_dird = rebase_path("tar_files.py", ".", root_out_dir) - print("project_dird-60:", project_dird) - - project_dirf = project_dir + "/" + project_dird - print("project_dirf-64:", project_dirf) - - dllib_path = string_replace(project_dirf, "/tar_files.py", "") - script = rebase_path( - "//test/xts/acts/commonlibrary/toolchain/libc-test/tar_files.py") - - if (target_cpu == "arm") { - _outputs = [ "$target_out_dir/libc-test-lib.tar" ] - outputs = _outputs - - input_path = rebase_path("$dllib_path/musl/libc-test-lib") - output_path = - rebase_path("$dllib_path/suites/acts/testcases/libc-test-lib.tar") - - print("root_build_dir-49", root_build_dir) - args = [ - "--input_path", - input_path, - "--output_path", - output_path, - "--temp_path", - "./libc-test-lib", - ] - } else if (target_cpu == "arm64") { - _outputs = [ "$target_out_dir/libc-test-lib.tar" ] - outputs = _outputs - - input_path = rebase_path("$dllib_path/musl/libc-test-lib") - output_path = - rebase_path("$dllib_path/suites/acts/testcases/libc-test-lib.tar") - print("root_build_dir-49", root_build_dir) - args = [ - "--input_path", - input_path, - "--output_path", - output_path, - "--temp_path", - "./libc-test-lib", - ] - } else { - _outputs = [ "" ] - outputs = _outputs - - input_path = rebase_path("") - output_path = rebase_path("") - print("root_build_dir-49", root_build_dir) - args = [ - "--input_path", - input_path, - "--output_path", - output_path, - "--temp_path", - "./libc-test-lib", - ] - } -} diff --git a/commonlibrary/toolchain/libc-test/BUILD.gn b/commonlibrary/toolchain/libc-test/BUILD.gn deleted file mode 100755 index 6005a9e89a0457c9d7141dfd59b330ef73c7832d..0000000000000000000000000000000000000000 --- a/commonlibrary/toolchain/libc-test/BUILD.gn +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright (C) 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("//build/test.gni") -import("//test/xts/tools/build/suite.gni") - -#module_output_path = "hits/huks_standard" -######################################################## -config("module_private_config") { - visibility = [ ":*" ] - include_dirs = [ - "//utils/native/base/include", - "//third_party/bounds_checking_function/include", - "//third_party/musl/porting/linux/user/include", - "//test/xts/acts/security_lite/huks/common/include", - ] -} - -######################################################## -ohos_moduletest_suite("ActToolChainTest") { - configs = [ ":module_private_config" ] - cflags_cc = [ "-DHILOG_ENABLE" ] - defines = [ "_STANDARD_SYSTEM_" ] - - sources = [ - "include/getfiles.cpp", - "include/setrlim.cpp", - "src/toolchaintest.cpp", - ] - - include_dirs = [ - "//utils/native/base/include", - "//third_party/bounds_checking_function/include", - "//third_party/musl/porting/linux/user/include/", - "//third_party/musl/porting/linux/user/src/sched", - "/third_party/musl/libc-test/src/commom", - "./include", - ] - - deps = [ - "//third_party/bounds_checking_function:libsec_static", - "//utils/native/base:utils", - ] -} diff --git a/commonlibrary/toolchain/libc-test/Test.json b/commonlibrary/toolchain/libc-test/Test.json deleted file mode 100755 index 5cb7392de961150926ffea088544a385adde1a10..0000000000000000000000000000000000000000 --- a/commonlibrary/toolchain/libc-test/Test.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "kits": [ - { - "push": [ - "ActToolChainTest->/data/local/tmp/ActToolChainTest", - "libc-test.tar->/data/local/tmp/libc-test.tar", - "libc-test-lib.tar->/data/local/tmp/libc-test-lib.tar" - ], - "type": "PushKit", - "post-push": [ - "mkdir /tmp", - "mkdir /dev/shm", - "mkdir /src", - "mkdir /src/functional", - "tar -xf /data/local/tmp/libc-test.tar -C /data/local/tmp/", - "tar -xf /data/local/tmp/libc-test-lib.tar -C /data/local/tmp/", - "chmod a+x -R /data/local/tmp/libc-test-lib", - "chmod a+x -R /data/local/tmp/libc-test" - ] - } - ], - "driver": { - "native-test-timeout": "120000", - "type": "CppTest", - "module-name": "ActToolChainTest", - "runtime-hint": "100s", - "native-test-device-path": "/data/local/tmp" - }, - "description": "Configuration for ActToolChainTest Tests" -} \ No newline at end of file diff --git a/commonlibrary/toolchain/libc-test/include/getfiles.cpp b/commonlibrary/toolchain/libc-test/include/getfiles.cpp deleted file mode 100644 index 0e2d4ea2ea6fa9c4a2ef9bcc216bd79aedcc7393..0000000000000000000000000000000000000000 --- a/commonlibrary/toolchain/libc-test/include/getfiles.cpp +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (C) 2022 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. - */ - -#include -#include -#include -#include -#include "gettestfiles.cpp" - -#include "runtest.h" -namespace OHOS { -using namespace std; - -static vector filenames; -std::vector runtest::GetFileNames(std::string path) -{ - vector tempName; - GetTestNames(path, tempName); - for (size_t i = 0; i < tempName.size(); i++) { - if ((tempName[i].find("stat", path.length()-1) != -1) || - (tempName[i].find("sem_close-unmap", path.length()-1) != -1) || - (tempName[i].find("runtest", path.length()-1) != -1)) { - continue; - } - filenames.push_back(tempName[i]); - } - return filenames; -} -} // namespace OHOS \ No newline at end of file diff --git a/commonlibrary/toolchain/libc-test/include/gettestfiles.cpp b/commonlibrary/toolchain/libc-test/include/gettestfiles.cpp deleted file mode 100644 index 23b3c2013386af383a144fde942ae4c11c23f2c3..0000000000000000000000000000000000000000 --- a/commonlibrary/toolchain/libc-test/include/gettestfiles.cpp +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (C) 2022 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. - */ - -#include -#include -#include -#include - -#include "runtest.h" - -static void GetTestNames(std::string path, std::vector& tempName) -{ - DIR *pDir; - struct dirent* ptr; - std::string p; - if (!(pDir = opendir(path.c_str()))) { - std::cout << "Folder doesn't Exist!" << std::endl; - return; - } - while ((ptr = readdir(pDir)) != nullptr) { - if (ptr->d_type == DT_DIR) { - if (strcmp(ptr->d_name, ".") != 0 && strcmp(ptr->d_name, "..") != 0) { - GetTestNames(path + "/" + ptr->d_name, tempName); - } - } else { - if (strcmp(ptr->d_name, ".") != 0 && strcmp(ptr->d_name, "..") != 0) { - tempName.push_back(path + "/" + ptr->d_name); - } - } - } - closedir(pDir); -} \ No newline at end of file diff --git a/commonlibrary/toolchain/libc-test/include/runtest.h b/commonlibrary/toolchain/libc-test/include/runtest.h deleted file mode 100644 index c9554b38b601599d0006cd9ba21f935b0ca75cd4..0000000000000000000000000000000000000000 --- a/commonlibrary/toolchain/libc-test/include/runtest.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (C) 2022 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. - */ -#ifndef TOOLCHAIN_RUNTEST_H -#define TOOLCHAIN_RUNTEST_H - -#include -#include -#include -namespace OHOS { -class runtest { -public: - static int t_setrlim(int r, long lim); - static std::vector GetFileNames(std::string path); -}; -} // namespace OHOS -#endif // TOOLCHAIN_LIBC_TEST_INCLUDE_RUNTEST_H_ diff --git a/commonlibrary/toolchain/libc-test/include/setrlim.cpp b/commonlibrary/toolchain/libc-test/include/setrlim.cpp deleted file mode 100644 index cb89e5198288c2c84a91e29b4ca0b8eda43854d5..0000000000000000000000000000000000000000 --- a/commonlibrary/toolchain/libc-test/include/setrlim.cpp +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (C) 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. - */ -#include -#include -#include -#include - -#include "runtest.h" -namespace OHOS { -int runtest::t_setrlim(int r, long lim) -{ - struct rlimit rl; - //Gets the current stack size - if (getrlimit(r, &rl)) { - printf("getrlimit %d: %s\n", r, strerror(errno)); - return -1; - } - if (lim > rl.rlim_max) { - return -1; - } - if (lim == rl.rlim_max && lim == rl.rlim_cur) { - return 0; - } - rl.rlim_max = lim; - rl.rlim_cur = lim; - if (setrlimit(r, &rl)) { - printf("setrlimit(%d, %ld): %s\n", r, lim, strerror(errno)); - return -1; - } - return 0; -} -} // namespace OHOS \ No newline at end of file diff --git a/commonlibrary/toolchain/libc-test/src/toolchaintest.cpp b/commonlibrary/toolchain/libc-test/src/toolchaintest.cpp deleted file mode 100644 index abbc43adf8bc983ed0a15c35e3606d21836a9763..0000000000000000000000000000000000000000 --- a/commonlibrary/toolchain/libc-test/src/toolchaintest.cpp +++ /dev/null @@ -1,141 +0,0 @@ -/* - * Copyright (C) 2022 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. - */ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "gtest/gtest.h" -#include "runtest.h" - -using namespace std; -using namespace testing::ext; -using namespace testing; -namespace OHOS { -class toolchaintest : public ::testing::TestWithParam {}; - -static string filepath = "/data/local/tmp/libc-test/src"; -static vector temp = runtest::GetFileNames(filepath); - -volatile int t_status = 0; - -static void handler(int sig) -{ -} - -static int start(const char *argvs) -{ - int pid, space_size = 100*1024; - //Create a child process - //Set the process stack space - pid = fork(); - if (pid == 0) { - runtest::t_setrlim(RLIMIT_STACK, space_size); - //Overloading the subprocess space - int exe = execl(argvs, "strptime", nullptr); - printf("exe:%d %s exec failed: %s\n", exe, argvs, strerror(errno)); - exit(1); - } - return pid; -} - -static int runTests(const char *argvs) -{ - int timeoutsec = 5, timeout = 0; - int status, pid; - sigset_t set; - void (*retfunc)(int); - //signal set - sigemptyset(&set); - sigaddset(&set, SIGCHLD); - sigprocmask(SIG_BLOCK, &set, nullptr); - retfunc = signal(SIGCHLD, handler); - if (retfunc == SIG_ERR) { - printf("signal triggering failed:%s\n", strerror(errno)); - } - pid = start(argvs); - //The function system call failed - if (pid == -1) { - printf("%s fork failed: %s\n", argvs, strerror(errno)); - printf("FAIL %s [internal]\n", argvs); - return -1; - } - struct timespec tp; - //Maximum blocking time - tp.tv_sec = timeoutsec; - tp.tv_nsec = 0; - if (sigtimedwait(&set, nullptr, &tp) == -1) { - //Call it again - if (errno == EAGAIN) { - timeout = 1; - } else { - printf("%s sigtimedwait failed: %s\n", argvs, strerror(errno)); - } - if (kill(pid, SIGKILL) == -1) { - printf("%s kill failed: %s\n", argvs, strerror(errno)); - } - } - //Waiting for the process to stop - if (waitpid(pid, &status, 0) != pid) { - printf("%s waitpid failed: %s\n", argvs, strerror(errno)); - printf("FAIL %s [internal]\n", argvs); - return -1; - } - //Process state - if (WIFEXITED(status)) { //The right exit - if (WEXITSTATUS(status) == 0) { //operate successfully - return t_status; - } - printf("FAIL %s [status %d]\n", argvs, WEXITSTATUS(status)); - } else if (timeout) { - printf("FAIL %s [timed out]\n", argvs); - } else if (WIFSIGNALED(status)) { - printf("FAIL %s [signal %s]\n", argvs, strsignal(WTERMSIG(status))); - } else { - printf("FAIL %s [unknown]\n", argvs); - } - return 1; -} - - -/** - * @tc.name : toolchaintest.LibcTest - * @tc.desc : start test - * @tc.level : Level 3 - */ -HWTEST_P(toolchaintest, LibcTest, Function | MediumTest | Level3) -{ - int ret; - string testName = GetParam(); - ret = runTests(testName.c_str()); - if (ret == 0) { - EXPECT_EQ(0, ret) << "test " << testName << " succeed" << endl; - } else { - EXPECT_EQ(1, ret) << "test " << testName << " failed" << endl; - EXPECT_EQ(-1, ret) << "test " << testName << " failed" << endl; - } -} -INSTANTIATE_TEST_CASE_P(libcTest, toolchaintest, testing::ValuesIn(temp.begin(), temp.end())); -} // namespace OHOS \ No newline at end of file diff --git a/commonlibrary/toolchain/libc-test/tar_files.py b/commonlibrary/toolchain/libc-test/tar_files.py deleted file mode 100755 index 1d745e6ebde81d5cf6df0be7c828ca0e9f9719f8..0000000000000000000000000000000000000000 --- a/commonlibrary/toolchain/libc-test/tar_files.py +++ /dev/null @@ -1,63 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- -""" -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 os -import argparse -import tarfile -import shutil - -copyFileCounts = 0 - -def copyFiles(sourceDir, targetDir): - global copyFileCounts - for f in os.listdir(sourceDir): - sourceF = os.path.join(sourceDir, f) - targetF = os.path.join(targetDir, f) - if not os.path.isfile(sourceF): - if os.path.isdir(sourceF): - copyFiles(sourceF, targetF) - elif os.path.isfile(sourceF): - if os.path.exists(targetDir): - copyFileCounts += 1 - open(targetF, "wb").write(open(sourceF, "rb").read()) - elif not os.path.exists(targetDir): - os.makedirs(targetDir) - copyFileCounts += 1 - open(targetF, "wb").write(open(sourceF, "rb").read()) - -def make_targz_one_by_one(output_filename, source_dir): - tar = tarfile.open(output_filename,"w") - for root,dir,files in os.walk(source_dir): - for file in files: - pathfile = os.path.join(root, file) - tar.add(pathfile) - tar.close() - -if __name__ == "__main__": - parser = argparse.ArgumentParser(description='manual to this script') - parser.add_argument("--input_path", type=str, default="0") - parser.add_argument("--output_path", type=str, default="0") - parser.add_argument("--temp_path", type=str, default="0") - args = parser.parse_args() - print(args.input_path) - print(args.output_path) - print(args.temp_path) - - copyFiles(args.input_path, args.temp_path) - make_targz_one_by_one(args.output_path, args.temp_path) - - shutil.rmtree(args.temp_path) #delete middle files \ No newline at end of file diff --git a/test_packages.gni b/test_packages.gni index 8ecd65e73fd83450752a595fad199a58de7fea83..b0d7aa0d3c3d0aa9a86fa72c48341c79710a77f5 100644 --- a/test_packages.gni +++ b/test_packages.gni @@ -46,7 +46,6 @@ _all_test_packages = [ "${ACTS_ROOT}/settingsdata:settingsdata", "${ACTS_ROOT}/barrierfree:barrierfree", "${ACTS_ROOT}/customization:customization", - "${ACTS_ROOT}/distributedschedule:systemabilitymgr", ] _all_test_packages_ivi = [