[compiler-rt] r271691 - [esan] Eliminate flakiness in large-stack test
Derek Bruening via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 3 10:18:09 PDT 2016
Author: bruening
Date: Fri Jun 3 12:18:09 2016
New Revision: 271691
URL: http://llvm.org/viewvc/llvm-project?rev=271691&view=rev
Log:
[esan] Eliminate flakiness in large-stack test
Turns off sampling for the large-stack test to remove nondeterminism in the
output and fix bot failures.
Modified:
compiler-rt/trunk/test/esan/TestCases/large-stack-linux.c
Modified: compiler-rt/trunk/test/esan/TestCases/large-stack-linux.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/esan/TestCases/large-stack-linux.c?rev=271691&r1=271690&r2=271691&view=diff
==============================================================================
--- compiler-rt/trunk/test/esan/TestCases/large-stack-linux.c (original)
+++ compiler-rt/trunk/test/esan/TestCases/large-stack-linux.c Fri Jun 3 12:18:09 2016
@@ -1,5 +1,5 @@
// RUN: %clang_esan_wset -O0 %s -o %t 2>&1
-// RUN: %env_esan_opts=verbosity=1 %run %t %t 2>&1 | FileCheck %s
+// RUN: %env_esan_opts="verbosity=1 record_snapshots=0" %run %t %t 2>&1 | FileCheck %s
#include <assert.h>
#include <stdio.h>
More information about the llvm-commits
mailing list