summaryrefslogtreecommitdiff
path: root/test/asan
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2018-06-16 04:01:08 +0000
committerVitaly Buka <vitalybuka@google.com>2018-06-16 04:01:08 +0000
commit5d4225a00c05e83c549545557bbcc2ea66ff17b9 (patch)
treec04015839489d74125ea6253fec1de85ae57267d /test/asan
parent48cf0257c265b562b39ed5c69db532c6ce2401e5 (diff)
[asan] Enable fgets_fputs test on Android
"echo data" didn't work because %run on android executes test on the device when lit shell command on the host system. https://github.com/google/sanitizers/issues/952 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@334883 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/asan')
-rw-r--r--test/asan/TestCases/Posix/fgets_fputs.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/asan/TestCases/Posix/fgets_fputs.cc b/test/asan/TestCases/Posix/fgets_fputs.cc
index 998288017..34c952f2e 100644
--- a/test/asan/TestCases/Posix/fgets_fputs.cc
+++ b/test/asan/TestCases/Posix/fgets_fputs.cc
@@ -1,9 +1,7 @@
// RUN: %clangxx_asan -g %s -o %t
-// RUN: echo data > %t-testdata
-// RUN: not %run %t 1 %t-testdata 2>&1 | FileCheck %s --check-prefix=CHECK-FGETS
+// RUN: not %run %t 1 2>&1 | FileCheck %s --check-prefix=CHECK-FGETS
// RUN: not %run %t 2 2>&1 | FileCheck %s --check-prefix=CHECK-FPUTS
// RUN: not %run %t 3 2>&1 | FileCheck %s --check-prefix=CHECK-PUTS
-// XFAIL: android
#include <assert.h>
#include <stdio.h>
@@ -39,8 +37,7 @@ int main(int argc, char *argv[]) {
assert(argc >= 2);
int testno = argv[1][0] - '0';
if (testno == 1) {
- assert(argc == 3);
- return test_fgets(argv[2]);
+ return test_fgets(argv[0]);
}
if (testno == 2)
return test_fputs();