summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Kleckner <rnk@google.com>2015-08-27 16:56:10 +0000
committerReid Kleckner <rnk@google.com>2015-08-27 16:56:10 +0000
commit766e5077844ea5eda517e6462b7909891590959f (patch)
tree224690511b9b157c983bf10a3b113fc0f1c19d7d
parented21a1fc7e805199b331e00f9f912fe3d5662181 (diff)
downloadbcm5719-llvm-766e5077844ea5eda517e6462b7909891590959f.tar.gz
bcm5719-llvm-766e5077844ea5eda517e6462b7909891590959f.zip
[windows] Avoid unix2dos, it seems to not work on our bot
llvm-svn: 246162
-rw-r--r--compiler-rt/test/asan/TestCases/Windows/suppressions-crlf.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler-rt/test/asan/TestCases/Windows/suppressions-crlf.cc b/compiler-rt/test/asan/TestCases/Windows/suppressions-crlf.cc
index 97ca5500096..3b5e4d57778 100644
--- a/compiler-rt/test/asan/TestCases/Windows/suppressions-crlf.cc
+++ b/compiler-rt/test/asan/TestCases/Windows/suppressions-crlf.cc
@@ -1,7 +1,6 @@
// Try a strlen suppression, but force the input file to be DOS format (CRLF).
// RUN: %clangxx_asan -O0 %s -o %t
-// RUN: echo "interceptor_name:strlen" > %t.supp
-// RUN: unix2dos %t.supp
+// RUN: python -c 'import sys; sys.stdout.write("interceptor_name:strlen\r\n")' > %t.supp
// RUN: %env_asan_opts=suppressions='"%t.supp"' %run %t 2>&1 | FileCheck %s
#include <stdio.h>
OpenPOWER on IntegriCloud