[PATCH] D52278: Disable test MicroBenchmarks/XRay/FDRMode/fdrmode-bench.test on Darwin.
Volodymyr Sapsai via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 20 11:45:35 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL342676: Disable test MicroBenchmarks/XRay/FDRMode/fdrmode-bench.test on Darwin. (authored by vsapsai, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D52278?vs=166182&id=166339#toc
Repository:
rL LLVM
https://reviews.llvm.org/D52278
Files:
test-suite/trunk/MicroBenchmarks/XRay/CMakeLists.txt
Index: test-suite/trunk/MicroBenchmarks/XRay/CMakeLists.txt
===================================================================
--- test-suite/trunk/MicroBenchmarks/XRay/CMakeLists.txt
+++ test-suite/trunk/MicroBenchmarks/XRay/CMakeLists.txt
@@ -1,2 +1,8 @@
add_subdirectory(ReturnReference)
-add_subdirectory(FDRMode)
+if(NOT TARGET_OS STREQUAL "Darwin")
+ # FDRMode test is failing on Darwin because
+ # `__xray_log_select_mode("xray-fdr")` returns `XRAY_MODE_NOT_FOUND`.
+ #
+ # Disable the test until it is fixed. rdar://problem/44578416
+ add_subdirectory(FDRMode)
+endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D52278.166339.patch
Type: text/x-patch
Size: 585 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180920/6aa465ed/attachment.bin>
More information about the llvm-commits
mailing list