test_template.gni 6.2 KB
Newer Older
M
maweiye 已提交
1 2 3 4
import("//build/test.gni")

musl_dir = "third_party/musl/"
test_dir = "${musl_dir}/libc-test"
5 6 7 8 9 10 11
out_test_dir = "${root_out_dir}/obj/${musl_dir}/libc-test"

if (current_cpu == "arm") {
  musl_arch = "arm"
} else if (current_cpu == "arm64") {
  musl_arch = "aarch64"
}
M
maweiye 已提交
12 13

musl_include_dir =
M
maweiye 已提交
14 15
    "${root_out_dir}/obj/${musl_dir}/usr/include/${musl_arch}-linux-ohos"
musl_lib_dir = "${root_out_dir}/obj/${musl_dir}/usr/lib/${musl_arch}-linux-ohos"
M
maweiye 已提交
16

M
maweiye 已提交
17
test_lib_dir = "musl/libc-test-lib"
M
maweiye 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32

template("test_unittest") {
  assert(defined(invoker.target_name),
         "file name is required in target ${target_name}")

  target_name = invoker.target_name
  target_dir = invoker.target_dir

  target("ohos_unittest", "${target_name}") {
    module_out_path = "libc-test/src/${target_dir}"

    sources = [ "${target_name}.c" ]
    include_dirs = [
      "//${test_dir}/src/common",
      "//${musl_include_dir}",
W
wangjiahui 已提交
33
      "//${test_dir}/src/functionalext/common",
M
maweiye 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47
    ]

    cflags = []

    cflags_c = [
      "-pipe",
      "-std=c99",
      "-D_POSIX_C_SOURCE=200809L",
      "-Wall",
      "-Wno-unused",
      "-Wno-unused-function",
      "-Wno-missing-braces",
      "-Wno-overflow",
      "-Wno-unknown-pragmas",
M
maweiye 已提交
48 49
      "-Wno-unsupported-floating-point-opt",
      "-Wno-ignored-pragmas",
M
maweiye 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
      "-fno-builtin",
      "-frounding-math",
      "-Werror=implicit-function-declaration",
      "-Werror=implicit-int",
      "-Werror=pointer-sign",
      "-Werror=pointer-arith",
      "-g",
      "-D_FILE_OFFSET_BITS=64",
      "-c",
      "-o",
    ]

    ldflags = [ "-nostdlib" ]

    libs = [ "//${out_test_dir}/src/common/libtest.a" ]

    if (target_dir == "math") {
      include_dirs += [
        "//${test_dir}/src/math/crlibm",
        "//${test_dir}/src/math/gen",
        "//${test_dir}/src/math/sanity",
        "//${test_dir}/src/math/special",
        "//${test_dir}/src/math/ucb",
      ]

      cflags += [
        # math/dremf.c:1:9: error: '_GNU_SOURCE' macro redefined [-Werror,-Wmacro-redefined]
        # cflags_c无法生效此命令
        # -Wno-error无法屏蔽错误,改为屏蔽警告
        "-Wno-macro-redefined",
      ]
    }

    if (target_dir == "functional") {
      cflags_c += [
M
maweiye 已提交
85
        # include/${musl_arch}-linux-ohos/endian.h:26:25: error: '&' within '|' [-Werror,-Wbitwise-op-parentheses]
M
maweiye 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98
        "-Wno-error=bitwise-op-parentheses",

        #functional/sscanf.c:73:9: error: magnitude of floating-point constant too large for type 'double'; maximum is 1.7976931348623157E+308 [-Werror,-Wliteral-range]
        "-Wno-error=literal-range",
      ]

      cflags += [
        # functional/strptime.c:3:9: error: '_GNU_SOURCE' macro redefined [-Werror,-Wmacro-redefined]
        "-Wno-macro-redefined",
      ]

      if (target_name == "dlopen") {
        ldflags += [ "-rdynamic" ]
99
        #libs += [ "//${root_out_dir}/${test_lib_dir}/libdlopen_dso.so" ]
M
maweiye 已提交
100 101
      }

Y
yangwenjun 已提交
102 103 104 105 106
      if (target_name == "dlopen_ns") {
        ldflags += [ "-rdynamic" ]
        #libs += [ "//${root_out_dir}/${test_lib_dir}/libdlopen_ns_dso.so" ]
      }

107 108 109 110 111
      if (target_name == "dlclose_reset") {
        ldflags += [ "-rdynamic" ]
        #libs += [ "//${root_out_dir}/${test_lib_dir}/libdlclose_reset_dso.so" ]
      }

112 113
      if (target_name == "tls_align") {
        ldflags += [ "-Wl,-rpath=src/functional" ]
114
        libs += [ "//${root_out_dir}/${test_lib_dir}/libtls_align_dso.so" ]
M
maweiye 已提交
115 116
      }

117 118
      if (target_name == "tls_init") {
        ldflags += [ "-Wl,-rpath=src/functional" ]
119
        libs += [ "//${root_out_dir}/${test_lib_dir}/libtls_init_dso.so" ]
M
maweiye 已提交
120 121 122
      }
    }

W
wangjiahui 已提交
123 124 125 126 127 128 129 130 131 132 133 134
    if (target_dir == "functionalext/ldso_randomization") {
      if (target_name == "ldso_randomization_test") {
        ldflags += [ "-Wl,--export-dynamic,-rpath=./" ]
      }

      if (target_name == "ldso_randomization_manual") {
        ldflags += [ "-Wl,-rpath=./" ]
      }

      include_dirs += [ "//${test_dir}/src/functionalext/common" ]
    }

M
maweiye 已提交
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
    if (target_dir == "musl") {
      cflags_c += [ "-w" ]

      libs += [
        "//${musl_lib_dir}/libc.a",
        "//${musl_lib_dir}/libm.a",
        "//${musl_lib_dir}/librt.a",
        "//${musl_lib_dir}/libcrypt.a",
        "//${musl_lib_dir}/libdl.a",
        "//${musl_lib_dir}/libresolv.a",
        "//${musl_lib_dir}/libutil.a",
        "//${musl_lib_dir}/libpthread.a",
      ]
    }

    if (target_dir == "regression") {
      cflags_c += [
        # regression/daemon-failure.c:56:24: error: adding 'int' to a string does not append to the string [-Werror,-Wstring-plus-int]
        "-Wno-string-plus-int",
        "-Wno-error=string-plus-int",
      ]

      cflags += [
        # regression/syscall-sign-extend.c:3:9: error: '_GNU_SOURCE' macro redefined [-Werror,-Wmacro-redefined]
        "-Wno-macro-redefined",
      ]

      if (target_name == "tls_get_new-dtv") {
163
        ldflags += [ "-Wl,-rpath=./" ]
M
maweiye 已提交
164
        libs +=
165
            [ "//${root_out_dir}/${test_lib_dir}/libtls_get_new-dtv_dso.so" ]
M
maweiye 已提交
166 167
      }
    }
W
wangjiahui 已提交
168 169 170 171 172 173 174 175

    if (target_dir == "functionalext/relro") {
      if (target_name == "dlopen_ext_relro_test") {
        include_dirs += [ "//${test_dir}/src/functionalext/common" ]

        ldflags += [ "-Wl,-rpath=./" ]
      }
    }
M
maweiye 已提交
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
  }
}

template("test_sharedlib") {
  assert(defined(invoker.target_name),
         "shared_lib name is required in target ${target_name}")

  target_name = invoker.target_name

  target("ohos_shared_library", "${target_name}") {
    include_dirs = [ "//${test_dir}/src/common" ]

    sources = [ "${target_name}.c" ]

    cflags_c = [
      "-pipe",
      "-std=c99",
      "-D_POSIX_C_SOURCE=200809L",
      "-Wall",
      "-Wno-unused",
      "-Wno-unused-function",
      "-Wno-missing-braces",
      "-Wno-overflow",
      "-Wno-unknown-pragmas",
M
maweiye 已提交
200
      "-Wno-unsupported-floating-point-opt",
M
maweiye 已提交
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
      "-fno-builtin",
      "-frounding-math",
      "-Werror=implicit-function-declaration",
      "-Werror=implicit-int",
      "-Werror=pointer-sign",
      "-Werror=pointer-arith",
      "-g",
      "-D_FILE_OFFSET_BITS=64",
      "-fPIC",
      "-DSHARED",
      "-c",
      "-o",
    ]

    ldflags = [
      "-shared",
      "-nostdlib",
    ]

    libs = [ "//${out_test_dir}/src/common/libtest.a" ]

    output_name = "${target_name}"

    output_extension = "so"

    subsystem_name = "musl"
M
maweiye 已提交
227
    part_name = "libc-test-lib"
M
maweiye 已提交
228 229
  }
}