BUILD.gn 589 字节
Newer Older
M
maweiye 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import("../../test_template.gni")
import("test_src_functional.gni")

foreach(s, functional_list) {
  test_unittest(s) {
    target_dir = "functional"
  }
}

group("functional_test") {
  testonly = true
  deps = [ ":dso_shared" ]

  foreach(s, functional_list) {
    deps += [ ":${s}" ]
  }
}

test_sharedlib("dlopen_dso") {
}
21 22
test_sharedlib("dlclose_reset_dso") {
}
M
maweiye 已提交
23 24 25 26 27 28 29 30 31 32
test_sharedlib("tls_init_dso") {
}
test_sharedlib("tls_align_dso") {
}

group("dso_shared") {
  testonly = true

  deps = [
    ":dlopen_dso",
33
    ":dlclose_reset_dso",
M
maweiye 已提交
34 35
    ":tls_align_dso",
    ":tls_init_dso",
C
caifuzhou 已提交
36
    
M
maweiye 已提交
37 38
  ]
}