Home
last modified time | relevance | path

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

/llvm-project/libc/test/src/__support/
H A Dchar_vector_test.cpp23 static constexpr char test_str[] = "1234567890"; in TEST() local
24 for (size_t i = 0; test_str[i] != '\0'; ++i) { in TEST()
25 v.append(test_str[i]); in TEST()
27 ASSERT_STREQ(v.c_str(), test_str); in TEST()
35 static constexpr char test_str[] = in TEST() local
38 for (size_t i = 0; test_str[i] != '\0'; ++i) { in TEST()
40 v.append(test_str[i]); in TEST()
42 ASSERT_STREQ(v.c_str(), test_str); in TEST()
51 static constexpr char test_str[] = in TEST() local
72 for (size_t i = 0; test_str[i] != '\0'; ++i) { in TEST()
[all …]
/llvm-project/lldb/unittests/Interpreter/
H A DTestCommandPaths.cpp86 bool success, const char *test_str) { in RunTest() argument
95 ASSERT_STREQ(multi_word_cmd->GetCommandName().str().c_str(), test_str); in RunTest()
99 ASSERT_STREQ(error.AsCString(), test_str); in RunTest()
/llvm-project/lldb/test/API/python_api/sbvalue_synthetic/
H A DTestSBValueSynthetic.py10 def test_str(self): member in TestSBValueSynthetic