[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
Wed Sep 19 14:08:50 PDT 2018


vsapsai created this revision.
vsapsai added reviewers: dberris, devnexen.
Herald added subscribers: dexonsmith, mgorny.

Test is failing because `__xray_log_select_mode("xray-fdr")` returns `XRAY_MODE_NOT_FOUND`. Disable until it is fixed.

rdar://problem/44578416


Repository:
  rT test-suite

https://reviews.llvm.org/D52278

Files:
  MicroBenchmarks/XRay/CMakeLists.txt


Index: MicroBenchmarks/XRay/CMakeLists.txt
===================================================================
--- MicroBenchmarks/XRay/CMakeLists.txt
+++ 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.166182.patch
Type: text/x-patch
Size: 534 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180919/53ba4939/attachment.bin>


More information about the llvm-commits mailing list