[compiler-rt] r306259 - [esan] Disable flaky tests for PR33590
Derek Bruening via llvm-commits
llvm-commits at lists.llvm.org
Sun Jun 25 18:02:54 PDT 2017
Author: bruening
Date: Sun Jun 25 18:02:54 2017
New Revision: 306259
URL: http://llvm.org/viewvc/llvm-project?rev=306259&view=rev
Log:
[esan] Disable flaky tests for PR33590
Disables 3 esan workingset tests until their underlying failures are
determined and resolved.
Modified:
compiler-rt/trunk/test/esan/TestCases/workingset-midreport.cpp
compiler-rt/trunk/test/esan/TestCases/workingset-samples.cpp
compiler-rt/trunk/test/esan/TestCases/workingset-simple.cpp
Modified: compiler-rt/trunk/test/esan/TestCases/workingset-midreport.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/esan/TestCases/workingset-midreport.cpp?rev=306259&r1=306258&r2=306259&view=diff
==============================================================================
--- compiler-rt/trunk/test/esan/TestCases/workingset-midreport.cpp (original)
+++ compiler-rt/trunk/test/esan/TestCases/workingset-midreport.cpp Sun Jun 25 18:02:54 2017
@@ -4,6 +4,9 @@
// RUN: %clang -O0 %s -o %t 2>&1
// RUN: %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-NO-ESAN
+// FIXME: Re-enable once PR33590 is fixed.
+// UNSUPPORTED: x86_64
+
#include <sanitizer/esan_interface.h>
#include <sched.h>
#include <stdio.h>
Modified: compiler-rt/trunk/test/esan/TestCases/workingset-samples.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/esan/TestCases/workingset-samples.cpp?rev=306259&r1=306258&r2=306259&view=diff
==============================================================================
--- compiler-rt/trunk/test/esan/TestCases/workingset-samples.cpp (original)
+++ compiler-rt/trunk/test/esan/TestCases/workingset-samples.cpp Sun Jun 25 18:02:54 2017
@@ -1,6 +1,9 @@
// RUN: %clang_esan_wset -O0 %s -o %t 2>&1
// RUN: %run %t 2>&1 | FileCheck %s
+// FIXME: Re-enable once PR33590 is fixed.
+// UNSUPPORTED: x86_64
+
#include <sanitizer/esan_interface.h>
#include <sched.h>
#include <stdlib.h>
Modified: compiler-rt/trunk/test/esan/TestCases/workingset-simple.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/esan/TestCases/workingset-simple.cpp?rev=306259&r1=306258&r2=306259&view=diff
==============================================================================
--- compiler-rt/trunk/test/esan/TestCases/workingset-simple.cpp (original)
+++ compiler-rt/trunk/test/esan/TestCases/workingset-simple.cpp Sun Jun 25 18:02:54 2017
@@ -1,6 +1,9 @@
// RUN: %clang_esan_wset -O0 %s -o %t 2>&1
// RUN: %run %t 2>&1 | FileCheck %s
+// FIXME: Re-enable once PR33590 is fixed.
+// UNSUPPORTED: x86_64
+
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
More information about the llvm-commits
mailing list