summaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/codegen/codegen_ut.cpp
diff options
context:
space:
mode:
authoratarasov5 <[email protected]>2025-10-20 15:38:35 +0300
committeratarasov5 <[email protected]>2025-10-20 16:17:47 +0300
commitdbc560aad32360d83f45d7854b01617b185acae4 (patch)
tree7e62f36ae606bcafe1764863bd8c57c29b21b3c0 /yql/essentials/minikql/codegen/codegen_ut.cpp
parent54f11197f61e07f384ee69be4345de116df10864 (diff)
YQL-20525: Enable yql/essentials/minikql
YQL-20525: Enable yql/essentials/minikql commit_hash:f1f589079ced14ead414b564d084bdc39c31dda2
Diffstat (limited to 'yql/essentials/minikql/codegen/codegen_ut.cpp')
-rw-r--r--yql/essentials/minikql/codegen/codegen_ut.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/yql/essentials/minikql/codegen/codegen_ut.cpp b/yql/essentials/minikql/codegen/codegen_ut.cpp
index 0e142affb0f..05ab4ab0995 100644
--- a/yql/essentials/minikql/codegen/codegen_ut.cpp
+++ b/yql/essentials/minikql/codegen/codegen_ut.cpp
@@ -8,11 +8,13 @@
using namespace NYql::NCodegen;
using namespace llvm;
-#ifdef _win_
+#if !defined(_ubsan_enabled_) && !defined(HAVE_VALGRIND)
+
+ #ifdef _win_
constexpr bool SupportsBitCode = false;
-#else
+ #else
constexpr bool SupportsBitCode = true;
-#endif
+ #endif
extern "C" int mul(int x, int y) {
return x * y;
@@ -241,7 +243,6 @@ Function* CreateUseExternalFromGeneratedFunction128(const ICodegen::TPtr& codege
} // namespace
-#if !defined(_ubsan_enabled_) && !defined(HAVE_VALGRIND)
Y_UNIT_TEST_SUITE(TCodegenTests) {
Y_UNIT_TEST(FibNative) {