mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 23:16:06 +00:00

This is the last PR that's needed (for now) to get libc++'s tests working with MSVC's STL. The ADDITIONAL_COMPILE_FLAGS machinery is very useful, but also very problematic for MSVC, as it doesn't understand most of Clang's compiler options. We've been dealing with this by simply marking anything that uses ADDITIONAL_COMPILE_FLAGS as FAIL or SKIPPED, but that creates significant gaps in test coverage. Fortunately, ADDITIONAL_COMPILE_FLAGS also supports "features", which can be slightly enhanced to send Clang-compatible and MSVC-compatible options to the right compilers. This patch adds the gcc-style-warnings and cl-style-warnings Lit features, and uses that to pass the appropriate warning flags to tests. It also uses TEST_MEOW_DIAGNOSTIC_IGNORED for a few local suppressions of MSVC warnings.
25 lines
807 B
C++
25 lines
807 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// MSVC warning C4611: interaction between '_setjmp' and C++ object destruction is non-portable
|
|
// ADDITIONAL_COMPILE_FLAGS(cl-style-warnings): /wd4611
|
|
|
|
// test <setjmp.h>
|
|
//
|
|
// Even though <setjmp.h> is not provided by libc++, we still test that
|
|
// using it with libc++ on the search path will work.
|
|
|
|
#include <setjmp.h>
|
|
|
|
#include "test_macros.h"
|
|
|
|
jmp_buf jb;
|
|
ASSERT_SAME_TYPE(void, decltype(longjmp(jb, 0)));
|
|
|
|
void f() { setjmp(jb); }
|