From 2733d22e8c50c9d05259c4594c27b7a94e6162c2 Mon Sep 17 00:00:00 2001 From: jiyong Date: Wed, 29 Dec 2021 16:30:27 +0800 Subject: [PATCH 1/2] =?UTF-8?q?hats=20=E7=BC=96=E8=AF=91=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: jiyong --- build/ohos.build | 3 ++- build/suite.gni | 1 + build/test_package_select.py | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/build/ohos.build b/build/ohos.build index f80901b..823460d 100644 --- a/build/ohos.build +++ b/build/ohos.build @@ -9,7 +9,8 @@ "inner_kits": [], "system_kits": [], "test_list": [ - "//test/xts/acts:acts" + "//test/xts/acts:acts", + "//test/xts/hits:hits" ] }, "ivi_tests": { diff --git a/build/suite.gni b/build/suite.gni index 0a565d7..4b8c18e 100755 --- a/build/suite.gni +++ b/build/suite.gni @@ -20,6 +20,7 @@ declare_args() { TESTCONFIG_FILENAME = "Test.xml" XTS_ROOT = "//test/xts" ACTS_ROOT = "//test/xts/acts" + HATS_ROOT = "//test/xts/hats" # create testsuite archive is time-consuming, do it only if necessary make_archive = false diff --git a/build/test_package_select.py b/build/test_package_select.py index ff8abb4..46f6940 100755 --- a/build/test_package_select.py +++ b/build/test_package_select.py @@ -40,6 +40,8 @@ def filter_modules(subsystem_data_file, test_packages): rslash_index = dep.find('/hits') if rslash_index < 0: rslash_index = dep.find('/acts') + if rslash_index < 0: + rslash_index = dep.find('/hats') colon_index = dep.find(':') if rslash_index < 0 or colon_index < 0: continue -- Gitee From 526ddf382922cc1556c4e11ca6cd52b8d7acfc22 Mon Sep 17 00:00:00 2001 From: jiyong Date: Wed, 29 Dec 2021 18:08:45 +0800 Subject: [PATCH 2/2] =?UTF-8?q?hats=20=E7=BC=96=E8=AF=91=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: jiyong --- build/ohos.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/ohos.build b/build/ohos.build index 823460d..a547f74 100644 --- a/build/ohos.build +++ b/build/ohos.build @@ -10,7 +10,7 @@ "system_kits": [], "test_list": [ "//test/xts/acts:acts", - "//test/xts/hits:hits" + "//test/xts/hats:hats" ] }, "ivi_tests": { -- Gitee