blob: 450be4dd80bf6725a09bd65b31c8a16ef7596066 [file] [log] [blame]
// Copyright (C) 2018 The Android Open Source Project
//
// 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.
cc_test {
name: "cintltst",
defaults: ["icu_test_defaults"],
// Workaround to run primary abi only in CTS
stem: "icu.cintltst",
srcs: [
"**/*.c",
"**/*.cpp",
],
cflags: [
"-DANDROID_LINK_SHARED_ICU4C",
// Force the test to use the data file on
"-DANDROID_USE_ICU_REG",
// Disable some file IO tests to workaround test crashing due to missing data files.
"-DUCONFIG_NO_FILE_IO",
"-DZERO_EXIT_CODE_FOR_FAILURES",
],
exclude_srcs: [
// Not built directly, but #included from other sources.
"usrchdat.c",
],
// Workaround Soong's limitation that data property can only include
// dependencies with a single variant
compile_multilib: "first",
}