diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2016-02-13 14:59:55 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2016-02-13 14:59:55 +0000 |
commit | 48f79c11890f23f47fbe89ec54a57d5cd485a7b1 (patch) | |
tree | b7c351213a811b3dcdba82d1b58caaade64d5ca0 /test/msan | |
parent | 807551b099338b7cc4f66ee567aae20a529dd27e (diff) | |
download | src-test2-48f79c11890f23f47fbe89ec54a57d5cd485a7b1.tar.gz src-test2-48f79c11890f23f47fbe89ec54a57d5cd485a7b1.zip |
Notes
Diffstat (limited to 'test/msan')
-rw-r--r-- | test/msan/fork.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/msan/fork.cc b/test/msan/fork.cc index 78a62d549ec3..38c3616ec164 100644 --- a/test/msan/fork.cc +++ b/test/msan/fork.cc @@ -4,6 +4,11 @@ // RUN: %clangxx_msan -std=c++11 -fsanitize-memory-track-origins=2 -g -O3 %s -o %t // RUN: MSAN_OPTIONS=store_context_size=1000,origin_history_size=0,origin_history_per_stack_limit=0 %run %t |& FileCheck %s +// +// Big-endian mips64 currently hangs on this test. Mark it unsupported to allow +// llvm-lit to finish. This also marks mips unsupported in most cases but msan +// is already unsupported for 32-bit mips. +// UNSUPPORTED: mips64-supported-target // Fun fact: if test output is redirected to a file (as opposed to // being piped directly to FileCheck), we may lose some "done"s due to |