[compiler-rt] r183638 - [ASan] don't use -m{32, 64} flag in test case, as it can be run in both 32- and 64-bit modes

Alexey Samsonov samsonov at google.com
Mon Jun 10 00:55:12 PDT 2013


Author: samsonov
Date: Mon Jun 10 02:55:12 2013
New Revision: 183638

URL: http://llvm.org/viewvc/llvm-project?rev=183638&view=rev
Log:
[ASan] don't use -m{32,64} flag in test case, as it can be run in both 32- and 64-bit modes

Modified:
    compiler-rt/trunk/lib/asan/lit_tests/TestCases/ioctl.cc

Modified: compiler-rt/trunk/lib/asan/lit_tests/TestCases/ioctl.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/lit_tests/TestCases/ioctl.cc?rev=183638&r1=183637&r2=183638&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/lit_tests/TestCases/ioctl.cc (original)
+++ compiler-rt/trunk/lib/asan/lit_tests/TestCases/ioctl.cc Mon Jun 10 02:55:12 2013
@@ -1,8 +1,8 @@
-// RUN: %clangxx_asan -m64 -O0 -g %s -o %t && ASAN_OPTIONS=handle_ioctl=1 %t 2>&1 | %symbolize | FileCheck %s
-// RUN: %clangxx_asan -m64 -O3 -g %s -o %t && ASAN_OPTIONS=handle_ioctl=1 %t 2>&1 | %symbolize | FileCheck %s
+// RUN: %clangxx_asan -O0 -g %s -o %t && ASAN_OPTIONS=handle_ioctl=1 %t 2>&1 | %symbolize | FileCheck %s
+// RUN: %clangxx_asan -O3 -g %s -o %t && ASAN_OPTIONS=handle_ioctl=1 %t 2>&1 | %symbolize | FileCheck %s
 
-// RUN: %clangxx_asan -m64 -O0 -g %s -o %t && %t
-// RUN: %clangxx_asan -m64 -O3 -g %s -o %t && %t
+// RUN: %clangxx_asan -O0 -g %s -o %t && %t
+// RUN: %clangxx_asan -O3 -g %s -o %t && %t
 
 #include <assert.h>
 #include <stdlib.h>





More information about the llvm-commits mailing list