Louis Dionne ed7c81d172 [libc++] Convert test-suite workarounds for some C11 features to XFAILs
Instead of trying to sniff out what features are supported by the
library being tested, the way we normally handle these things is with
Lit annotations. This should not be treated differently.

Differential Revision: https://reviews.llvm.org/D108209
2021-08-18 08:28:11 -04:00

180 lines
6.4 KiB
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
//
//===----------------------------------------------------------------------===//
// test <stdlib.h>
// ::aligned_alloc is provided by the C library, but it's marked as unavailable
// until macOS 10.15
// XFAIL: use_system_cxx_lib && target={{.+}}-apple-macosx10.{{9|10|11|12|13|14}}
// ::aligned_alloc is not implemented on Windows
// XFAIL: target={{.+}}-pc-windows-{{.+}}
#include <stdlib.h>
#include <type_traits>
#include <cassert>
#include "test_macros.h"
// As of 1/10/2015 clang emits a -Wnonnull warnings even if the warning occurs
// in an unevaluated context. For this reason we manually suppress the warning.
#if defined(__clang__)
#pragma clang diagnostic ignored "-Wnonnull"
#endif
#ifdef abs
#error abs is defined
#endif
#ifdef labs
#error labs is defined
#endif
#ifdef llabs
#error llabs is defined
#endif
#ifdef div
#error div is defined
#endif
#ifdef ldiv
#error ldiv is defined
#endif
#ifdef lldiv
#error lldiv is defined
#endif
#ifndef EXIT_FAILURE
#error EXIT_FAILURE not defined
#endif
#ifndef EXIT_SUCCESS
#error EXIT_SUCCESS not defined
#endif
#ifndef MB_CUR_MAX
#error MB_CUR_MAX not defined
#endif
#ifndef NULL
#error NULL not defined
#endif
#ifndef RAND_MAX
#error RAND_MAX not defined
#endif
template <class T, class = decltype(::abs(std::declval<T>()))>
std::true_type has_abs_imp(int);
template <class T>
std::false_type has_abs_imp(...);
template <class T>
struct has_abs : decltype(has_abs_imp<T>(0)) {};
void test_abs() {
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wabsolute-value"
#endif
static_assert((std::is_same<decltype(abs((float)0)), float>::value), "");
static_assert((std::is_same<decltype(abs((double)0)), double>::value), "");
static_assert(
(std::is_same<decltype(abs((long double)0)), long double>::value), "");
static_assert((std::is_same<decltype(abs((int)0)), int>::value), "");
static_assert((std::is_same<decltype(abs((long)0)), long>::value), "");
static_assert((std::is_same<decltype(abs((long long)0)), long long>::value),
"");
static_assert((std::is_same<decltype(abs((unsigned char)0)), int>::value),
"");
static_assert((std::is_same<decltype(abs((unsigned short)0)), int>::value),
"");
static_assert((std::is_same<decltype(abs((signed char)0)), int>::value),
"");
static_assert((std::is_same<decltype(abs((short)0)), int>::value),
"");
static_assert((std::is_same<decltype(abs((unsigned char)0)), int>::value),
"");
static_assert((std::is_same<decltype(abs((char)0)), int>::value),
"");
static_assert(!has_abs<unsigned>::value, "");
static_assert(!has_abs<unsigned long>::value, "");
static_assert(!has_abs<unsigned long long>::value, "");
static_assert(!has_abs<size_t>::value, "");
#ifdef __clang__
#pragma clang diagnostic pop
#endif
assert(abs(-1.) == 1);
}
int main(int, char**)
{
size_t s = 0; ((void)s);
div_t d; ((void)d);
ldiv_t ld; ((void)ld);
lldiv_t lld; ((void)lld);
char** endptr = 0;
static_assert((std::is_same<decltype(atof("")), double>::value), "");
static_assert((std::is_same<decltype(atoi("")), int>::value), "");
static_assert((std::is_same<decltype(atol("")), long>::value), "");
static_assert((std::is_same<decltype(atoll("")), long long>::value), "");
static_assert((std::is_same<decltype(getenv("")), char*>::value), "");
static_assert((std::is_same<decltype(strtod("", endptr)), double>::value), "");
static_assert((std::is_same<decltype(strtof("", endptr)), float>::value), "");
static_assert((std::is_same<decltype(strtold("", endptr)), long double>::value), "");
static_assert((std::is_same<decltype(strtol("", endptr,0)), long>::value), "");
static_assert((std::is_same<decltype(strtoll("", endptr,0)), long long>::value), "");
static_assert((std::is_same<decltype(strtoul("", endptr,0)), unsigned long>::value), "");
static_assert((std::is_same<decltype(strtoull("", endptr,0)), unsigned long long>::value), "");
static_assert((std::is_same<decltype(rand()), int>::value), "");
static_assert((std::is_same<decltype(srand(0)), void>::value), "");
#if TEST_STD_VER > 14
static_assert((std::is_same<decltype(aligned_alloc(1, 0)), void*>::value), "");
#endif
void* pv = 0;
void (*handler)() = 0;
int (*comp)(void const*, void const*) = 0;
static_assert((std::is_same<decltype(calloc(0,0)), void*>::value), "");
static_assert((std::is_same<decltype(free(0)), void>::value), "");
static_assert((std::is_same<decltype(malloc(0)), void*>::value), "");
static_assert((std::is_same<decltype(realloc(0,0)), void*>::value), "");
static_assert((std::is_same<decltype(abort()), void>::value), "");
static_assert((std::is_same<decltype(atexit(handler)), int>::value), "");
static_assert((std::is_same<decltype(exit(0)), void>::value), "");
static_assert((std::is_same<decltype(_Exit(0)), void>::value), "");
static_assert((std::is_same<decltype(getenv("")), char*>::value), "");
static_assert((std::is_same<decltype(system("")), int>::value), "");
static_assert((std::is_same<decltype(bsearch(pv,pv,0,0,comp)), void*>::value), "");
static_assert((std::is_same<decltype(qsort(pv,0,0,comp)), void>::value), "");
static_assert((std::is_same<decltype(abs(0)), int>::value), "");
static_assert((std::is_same<decltype(labs((long)0)), long>::value), "");
static_assert((std::is_same<decltype(llabs((long long)0)), long long>::value), "");
static_assert((std::is_same<decltype(div(0,0)), div_t>::value), "");
static_assert((std::is_same<decltype(ldiv(0L,0L)), ldiv_t>::value), "");
static_assert((std::is_same<decltype(lldiv(0LL,0LL)), lldiv_t>::value), "");
wchar_t* pw = 0;
const wchar_t* pwc = 0;
char* pc = 0;
static_assert((std::is_same<decltype(mblen("",0)), int>::value), "");
static_assert((std::is_same<decltype(mbtowc(pw,"",0)), int>::value), "");
static_assert((std::is_same<decltype(wctomb(pc,L' ')), int>::value), "");
static_assert((std::is_same<decltype(mbstowcs(pw,"",0)), size_t>::value), "");
static_assert((std::is_same<decltype(wcstombs(pc,pwc,0)), size_t>::value), "");
test_abs();
return 0;
}