blob: 1eea94be107198570d5f55d93a6313cb320006e0 [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"],
multilib: {
lib64: {
suffix: "64",
},
lib32: {
suffix: "32",
},
},
cflags: [
"-DANDROID_LINK_SHARED_ICU4C",
// Force the test to use the data file on
"-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",
],
}