Add a missing "%run" expansion to fread_fwrite.cc test case to support testing on...
authorKuba Mracek <mracek@apple.com>
Wed, 26 Apr 2017 20:20:35 +0000 (20:20 +0000)
committerKuba Mracek <mracek@apple.com>
Wed, 26 Apr 2017 20:20:35 +0000 (20:20 +0000)
llvm-svn: 301455

compiler-rt/test/asan/TestCases/Posix/fread_fwrite.cc

index 97d44b7..c062926 100644 (file)
@@ -1,6 +1,6 @@
 // RUN: %clangxx_asan -g %s -o %t
-// RUN: not %t 2>&1 | FileCheck %s --check-prefix=CHECK-FWRITE
-// RUN: not %t 1 2>&1 | FileCheck %s --check-prefix=CHECK-FREAD
+// RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-FWRITE
+// RUN: not %run %t 1 2>&1 | FileCheck %s --check-prefix=CHECK-FREAD
 
 #include <stdio.h>
 #include <stdlib.h>