1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[gn build] (manually) port 0609f257dc2e2c3

This commit is contained in:
Nico Weber 2021-02-04 06:52:22 -05:00
parent beb3fa0881
commit e65f0c4dde
2 changed files with 7 additions and 0 deletions

View File

@ -46,6 +46,7 @@ group("unittests") {
"XRay:XRayTests",
"tools/llvm-cfi-verify:CFIVerifyTests",
"tools/llvm-exegesis:LLVMExegesisTests",
"tools/llvm-profgen:LLVMProfgenTests",
]
# Target-dependent unit tests.

View File

@ -0,0 +1,6 @@
import("//llvm/utils/unittest/unittest.gni")
unittest("LLVMProfgenTests") {
deps = [ "//llvm/lib/Testing/Support" ]
sources = [ "ContextCompressionTest.cpp" ]
}