From f941d2e1f7f9e83db25ddff92fa9a32290ff6872 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 30 May 2022 03:00:37 +0300 Subject: [PATCH] Add tests for __int128 to type_name_test.cpp --- test/type_name_test.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/type_name_test.cpp b/test/type_name_test.cpp index 3ed453b..bac8ccd 100644 --- a/test/type_name_test.cpp +++ b/test/type_name_test.cpp @@ -82,6 +82,11 @@ int main() TEST(long long); TEST(unsigned long long); +#if defined(BOOST_HAS_INT128) + TEST(__int128); + TEST(unsigned __int128); +#endif + TEST(char); TEST(wchar_t); #if !defined(BOOST_NO_CXX11_CHAR16_T)