From 4045ab75dbb96d66f64752c6225ab0ef3d77c20f Mon Sep 17 00:00:00 2001 From: zhouguangyuan Date: Thu, 29 Aug 2024 18:03:14 +0800 Subject: [PATCH] [test] fix BUILD_ARK_GC_SUPPORT boolean value remove the double quotes Issue: https://gitee.com/openharmony/third_party_llvm-project/issues/IANG5D Signed-off-by: ZhouGuangyuan --- llvm/test/lit.site.cfg.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/lit.site.cfg.py.in b/llvm/test/lit.site.cfg.py.in index 0192624cd230..3ab266f75430 100644 --- a/llvm/test/lit.site.cfg.py.in +++ b/llvm/test/lit.site.cfg.py.in @@ -62,7 +62,7 @@ config.llvm_raevict_model_autogenerated = @LLVM_RAEVICT_MODEL_AUTOGENERATED@ config.expensive_checks = @LLVM_ENABLE_EXPENSIVE_CHECKS@ config.dxil_tests = @LLVM_INCLUDE_DXIL_TESTS@ config.have_llvm_driver = @LLVM_TOOL_LLVM_DRIVER_BUILD@ -config.ark_gc_support = "@BUILD_ARK_GC_SUPPORT@" +config.ark_gc_support = @BUILD_ARK_GC_SUPPORT@ import lit.llvm lit.llvm.initialize(lit_config, config) -- Gitee