[compiler-rt] r276376 - Fix test on windows

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 21 18:12:04 PDT 2016


Author: vitalybuka
Date: Thu Jul 21 20:12:04 2016
New Revision: 276376

URL: http://llvm.org/viewvc/llvm-project?rev=276376&view=rev
Log:
Fix test on windows

Modified:
    compiler-rt/trunk/test/asan/TestCases/use-after-scope-types.cc

Modified: compiler-rt/trunk/test/asan/TestCases/use-after-scope-types.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/use-after-scope-types.cc?rev=276376&r1=276375&r2=276376&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/use-after-scope-types.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/use-after-scope-types.cc Thu Jul 21 20:12:04 2016
@@ -11,9 +11,8 @@
 // RUN: not %run %t 8 2>&1 | FileCheck %s
 // RUN: not %run %t 9 2>&1 | FileCheck %s
 // RUN: not %run %t 10 2>&1 | FileCheck %s
-// RUN: not %run %t 11 2>&1 | FileCheck %s
 
-// RUN: %env_asan_opts=detect_stack_use_after_scope=0 %run %t 12
+// RUN: %env_asan_opts=detect_stack_use_after_scope=0 %run %t 11
 
 #include <stdlib.h>
 #include <string>
@@ -58,7 +57,6 @@ int main(int argc, char **argv) {
     &test<int>,
     &test<double>,
     &test<float>,
-    &test<uint64_t>,
     &test<void*>,
     &test<std::vector<std::string>>,
     &test<int[3]>,




More information about the llvm-commits mailing list