xref: /llvm-project/libc/test/src/math/smoke/generic_sqrtf128_test.cpp (revision 777eb35614eff30f8fe8ca7729b9c04846a09476)
1*777eb356Sfelixh5678 //===-- Unittests for generic implementation of sqrtf128-------------------===//
2*777eb356Sfelixh5678 //
3*777eb356Sfelixh5678 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*777eb356Sfelixh5678 // See https://llvm.org/LICENSE.txt for license information.
5*777eb356Sfelixh5678 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*777eb356Sfelixh5678 //
7*777eb356Sfelixh5678 //===----------------------------------------------------------------------===//
8*777eb356Sfelixh5678 
9*777eb356Sfelixh5678 #include "SqrtTest.h"
10*777eb356Sfelixh5678 
11*777eb356Sfelixh5678 #include "src/__support/FPUtil/generic/sqrt.h"
12*777eb356Sfelixh5678 
13*777eb356Sfelixh5678 LIST_SQRT_TESTS(float128, LIBC_NAMESPACE::fputil::sqrt<float128>)
14