Searched refs:testAgainstLibc (Results 1 - 1 of 1) sorted by relevance

/openbsd-current/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dstrings_test.cpp96 static void testAgainstLibc(const char *Format, T Arg1, T Arg2) { function
106 testAgainstLibc<int>("%d-%d", INT_MIN, INT_MAX);
107 testAgainstLibc<unsigned>("%u-%u", 0, UINT_MAX);
108 testAgainstLibc<unsigned>("%x-%x", 0, UINT_MAX);
109 testAgainstLibc<long>("%zd-%zd", LONG_MIN, LONG_MAX);
110 testAgainstLibc<unsigned long>("%zu-%zu", 0, ULONG_MAX);
111 testAgainstLibc<unsigned long>("%zx-%zx", 0, ULONG_MAX);
115 testAgainstLibc<int>("%3d - %3d", 1, 0);
116 testAgainstLibc<int>("%3d - %3d", -1, 123);
117 testAgainstLibc<in
[all...]

Completed in 57 milliseconds