blob: 8b812f8b375eea0dd180fe689987d6166ffcf603 [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: "intltest",
defaults: ["icu_test_defaults"],
// Workaround to run primary abi only in CTS
stem: "icu.intltest",
cflags: [
"-DANDROID_LINK_SHARED_ICU4C",
// Do not set the data directory explicitly.
"-DANDROID_USE_ICU_REG",
// Needed for char* shift calculation in the test.
"-Wno-string-plus-int",
"-DZERO_EXIT_CODE_FOR_FAILURES",
],
srcs: [
"**/*.c",
"**/*.cpp",
],
exclude_srcs: [
"numberformat2test.cpp",
],
// Workaround Soong's limitation that data property can only include
// dependencies with a single variant
compile_multilib: "first",
}