Home
last modified time | relevance | path

Searched refs:RunContext (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libc/utils/UnitTest/
H A DLibcTest.cpp23 class RunContext { class
90 bool test(RunContext *Ctx, TestCondition Cond, ValType LHS, ValType RHS, in test()
176 RunContext Ctx; in runTests()
183 case RunContext::Result_Fail: in runTests()
187 case RunContext::Result_Pass: in runTests()
210 template bool test<char>(RunContext *Ctx, TestCondition Cond, char LHS,
226 template bool test<long long>(RunContext *Ctx, TestCondition Cond,
231 template bool test<unsigned char>(RunContext *Ctx, TestCondition Cond,
241 template bool test<unsigned int>(RunContext *Ctx, TestCondition Cond,
246 template bool test<unsigned long>(RunContext *Ctx, TestCondition Cond,
[all …]
H A DLibcTest.h24 class RunContext; variable
44 bool test(RunContext *Ctx, TestCondition Cond, ValType LHS, ValType RHS,
64 RunContext *Ctx = nullptr;
66 void setContext(RunContext *C) { Ctx = C; } in setContext()
/llvm-project-15.0.7/libc/test/src/math/
H A Dilogbl_test.cpp18 using RunContext = __llvm_libc::testing::RunContext; typedef