[PATCH] D49269: Remove `tsan/Darwin/gcd-after-null.mm` test.

Dan Liew via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 12 14:29:58 PDT 2018


delcypher created this revision.
delcypher added a reviewer: kubamracek.
Herald added a subscriber: Sanitizers.

This test invokes undocumented behaviour that could change in
the future. Given this, it's probably best to just remove the
test.

rdar://problem/42022283


Repository:
  rCRT Compiler Runtime

https://reviews.llvm.org/D49269

Files:
  test/tsan/Darwin/gcd-after-null.mm


Index: test/tsan/Darwin/gcd-after-null.mm
===================================================================
--- test/tsan/Darwin/gcd-after-null.mm
+++ /dev/null
@@ -1,23 +0,0 @@
-// Regression test to make sure we don't crash when dispatch_after is called with a NULL queue.
-
-// RUN: %clang_tsan %s -o %t -framework Foundation
-// RUN: %run %t 2>&1 | FileCheck %s
-
-#import <Foundation/Foundation.h>
-
-int main(int argc, const char *argv[]) {
-  fprintf(stderr, "start\n");
-
-  dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(10 * NSEC_PER_MSEC)), NULL, ^{
-    dispatch_async(dispatch_get_main_queue(), ^{
-      CFRunLoopStop(CFRunLoopGetMain());
-    });
-  });
-  CFRunLoopRun();
-
-  fprintf(stderr, "done\n");
-  return 0;
-}
-
-// CHECK: start
-// CHECK: done


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D49269.155275.patch
Type: text/x-patch
Size: 784 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180712/17a75e50/attachment.bin>


More information about the llvm-commits mailing list