From: Michał Górny Date: Thu, 12 Dec 2019 14:17:16 +0000 (+0100) Subject: [clang] [test] Disable the test exhausting stack on NetBSD X-Git-Tag: llvmorg-11-init~2275 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4c6c1d0f437194904d6093ca2f94230b6ec49e0b;p=platform%2Fupstream%2Fllvm.git [clang] [test] Disable the test exhausting stack on NetBSD Disable the instantiation-depth-default.cpp test on NetBSD since it requires more stack space than we have by default on NetBSD. Differential Revision: https://reviews.llvm.org/D71419 --- diff --git a/clang/test/SemaTemplate/instantiation-depth-default.cpp b/clang/test/SemaTemplate/instantiation-depth-default.cpp index 9d8b6cc..39410bd 100644 --- a/clang/test/SemaTemplate/instantiation-depth-default.cpp +++ b/clang/test/SemaTemplate/instantiation-depth-default.cpp @@ -4,6 +4,9 @@ // increases our per-frame stack usage enough that this test no longer fits // within our normal stack space allocation. // UNSUPPORTED: asan +// +// The default stack size on NetBSD is too small for this test. +// UNSUPPORTED: system-netbsd template struct X : X {}; // expected-error-re@8 {{recursive template instantiation exceeded maximum depth of 1024{{$}}}}