1# Copyright (c) 2021-2022 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13import("//base/hiviewdfx/faultloggerd/faultloggerd.gni") 14if (defined(ohos_lite)) { 15 import("//build/lite/config/test.gni") 16} else { 17 import("//build/test.gni") 18} 19group("faultloggerd_moduletest") { 20 testonly = true 21 deps = [ "moduletest:moduletest" ] 22} 23 24group("faultloggerd_systemtest") { 25 testonly = true 26 deps = [ "systemtest:systemtest" ] 27} 28 29group("faultloggerd_funchook") { 30 testonly = true 31 deps = [ "funchook:dfxfunchook_unittest" ] 32} 33 34group("faultloggerd_performancetest") { 35 testonly = true 36 deps = [ "performancetest:performance" ] 37} 38 39group("faultloggerd_fuzzertest") { 40 testonly = true 41 deps = [ "fuzztest/faultloggerd_fuzzer:fuzztest" ] 42} 43 44group("faultloggerd_unittest") { 45 testonly = true 46 deps = [ 47 "unittest/dump_catcher:unittest", 48 "unittest/process_dump:unittest", 49 "unittest/services:unittest", 50 "unittest/signal_handler:unittest", 51 ] 52} 53