-
Notifications
You must be signed in to change notification settings - Fork 264
/
Copy pathtest_gnu_source.cpp
30 lines (26 loc) · 1.08 KB
/
test_gnu_source.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/***************************************************************************
* Copyright (c) Johan Mabille, Sylvain Corlay, Wolf Vollprecht and *
* Martin Renou *
* Copyright (c) QuantStack *
* Copyright (c) Serge Guelton *
* *
* Distributed under the terms of the BSD 3-Clause License. *
* *
* The full license is in the file LICENSE, distributed with this software. *
****************************************************************************/
/*
* Make sure the inclusion works correctly without _GNU_SOURCE
*/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "xsimd/xsimd.hpp"
#include "doctest/doctest.h"
TEST_CASE("[GNU_SOURCE support]")
{
SUBCASE("exp10")
{
CHECK_EQ(xsimd::exp10(0.), 1.);
CHECK_EQ(xsimd::exp10(0.f), 1.f);
}
}