Add a missing "%run" expansion to fread_fwrite.cc test case to support testing on iOS simulator.

llvm-svn: 301455
This commit is contained in:
Kuba Mracek 2017-04-26 20:20:35 +00:00
parent 0417172387
commit 0826e6c01a
1 changed files with 2 additions and 2 deletions

View 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>