diff options
author | Reid Kleckner <rnk@google.com> | 2015-08-27 16:56:10 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2015-08-27 16:56:10 +0000 |
commit | 766e5077844ea5eda517e6462b7909891590959f (patch) | |
tree | 224690511b9b157c983bf10a3b113fc0f1c19d7d | |
parent | ed21a1fc7e805199b331e00f9f912fe3d5662181 (diff) | |
download | bcm5719-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.cc | 3 |
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> |