Skip to content

Commit 5aa2fb7

Browse files
committed
Disable test MicroBenchmarks/XRay/FDRMode/fdrmode-bench.test on Darwin.
Test is failing because `__xray_log_select_mode("xray-fdr")` returns XRAY_MODE_NOT_FOUND. Disable until it is fixed. rdar://problem/44578416 Reviewers: dberris, devnexen Reviewed By: dberris Subscribers: mgorny, dexonsmith, llvm-commits Differential Revision: https://reviews.llvm.org/D52278 llvm-svn: 342676
1 parent 651437f commit 5aa2fb7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

MicroBenchmarks/XRay/CMakeLists.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
add_subdirectory(ReturnReference)
2-
add_subdirectory(FDRMode)
2+
if(NOT TARGET_OS STREQUAL "Darwin")
3+
# FDRMode test is failing on Darwin because
4+
# `__xray_log_select_mode("xray-fdr")` returns `XRAY_MODE_NOT_FOUND`.
5+
#
6+
# Disable the test until it is fixed. rdar://problem/44578416
7+
add_subdirectory(FDRMode)
8+
endif()

0 commit comments

Comments
 (0)