blob: c002d6c425403d7e87d18c1feff2906c859c6f10 [file] [log] [blame]
Dan Willemseneb4fafa2016-12-15 22:55:34 -08001//
2// Copyright (C) 2016 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17// Include the generated rules
18build = ["gen.bp"]
19
20genrule {
21 name: "ltp_linux_syscall_numbers",
22 tool_files: ["testcases/kernel/include/regen.sh"],
23 cmd: "$(location) $(genDir)/linux_syscall_numbers.h",
24 srcs: ["testcases/kernel/include/*.in"],
25 out: ["linux_syscall_numbers.h"],
26}
27
28cc_defaults {
29 name: "ltp_defaults",
30
31 cflags: [
32 // Hacks for bionic compatibility
33 "-include bionic-compat.h",
34
Chih-Hung Hsieh36ef68a2017-09-28 15:13:58 -070035 "-Wall",
36 "-Werror",
37 // Keep some warnings to check later
38 "-Wno-error=absolute-value",
39 "-Wno-error=undefined-internal",
40 "-Wno-error=uninitialized",
41 "-Wno-error=user-defined-warnings",
Dan Willemseneb4fafa2016-12-15 22:55:34 -080042 // Silence noisy warnings
Chih-Hung Hsieh36ef68a2017-09-28 15:13:58 -070043 "-Wno-constant-conversion",
Dan Willemseneb4fafa2016-12-15 22:55:34 -080044 "-Wno-deprecated",
Chih-Hung Hsieh36ef68a2017-09-28 15:13:58 -070045 "-Wno-duplicate-decl-specifier",
46 "-Wno-empty-body",
Dan Willemseneb4fafa2016-12-15 22:55:34 -080047 "-Wno-format",
48 "-Wno-gnu-designator",
Chih-Hung Hsieh36ef68a2017-09-28 15:13:58 -070049 "-Wno-knr-promoted-parameter",
Dan Willemseneb4fafa2016-12-15 22:55:34 -080050 "-Wno-macro-redefined",
51 "-Wno-missing-field-initializers",
52 "-Wno-parentheses-equality",
53 "-Wno-pointer-arith",
Chih-Hung Hsieh36ef68a2017-09-28 15:13:58 -070054 "-Wno-pointer-sign",
Dan Willemseneb4fafa2016-12-15 22:55:34 -080055 "-Wno-sign-compare",
Chih-Hung Hsieh36ef68a2017-09-28 15:13:58 -070056 "-Wno-tautological-compare",
57 "-Wno-unneeded-internal-declaration",
58 "-Wno-unused-function",
Dan Willemseneb4fafa2016-12-15 22:55:34 -080059 "-Wno-unused-parameter",
Chih-Hung Hsieh36ef68a2017-09-28 15:13:58 -070060 "-Wno-unused-variable",
Dan Willemseneb4fafa2016-12-15 22:55:34 -080061 ],
62
63 local_include_dirs: [
64 "android/include",
65 "include",
66 ],
67
Dan Willemseneb4fafa2016-12-15 22:55:34 -080068 target: {
69 // bionic has broken signal handling for signum > 32 on 32-bit ARM and x86
70 // (for ABI reasons this can't be fixed)
71 android_arm: {
72 cflags: ["-DNUMSIGS=32"],
73 },
74 android_x86: {
75 cflags: ["-DNUMSIGS=32"],
76 },
77 },
78
79 generated_headers: ["ltp_linux_syscall_numbers"],
80
81 static_libs: ["libcap"],
82
83 // TODO: recover libaio when the external project created
84 shared_libs: ["libselinux"],
85}
86
87cc_defaults {
88 name: "ltp_test_defaults",
89 defaults: ["ltp_defaults"],
90 gtest: false,
91 no_named_install_directory: true,
92 relative_install_path: "ltp/testcases/bin",
93}