Home
last modified time | relevance | path

Searched refs:test_status (Results 1 – 15 of 15) sorted by relevance

/llvm-project-15.0.7/libc/AOR_v20.02/string/test/
H A Dstrlen.c38 static int test_status; variable
39 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
79 test_status = 0; in main()
87 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name); in main()
88 if (test_status) in main()
H A Dmemchr.c35 static int test_status; variable
36 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
79 test_status = 0; in main()
89 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name); in main()
90 if (test_status) in main()
H A Dstrnlen.c35 static int test_status; variable
36 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
77 test_status = 0; in main()
89 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name); in main()
90 if (test_status) in main()
H A Dstrrchr.c33 static int test_status; variable
34 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
80 test_status = 0; in main()
93 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name); in main()
94 if (test_status) in main()
H A Dstrchrnul.c35 static int test_status; variable
36 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
82 test_status = 0; in main()
95 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name); in main()
96 if (test_status) in main()
H A Dstrchr.c34 static int test_status; variable
35 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
81 test_status = 0; in main()
94 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name); in main()
95 if (test_status) in main()
H A Dstrcpy.c34 static int test_status; variable
35 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
86 test_status = 0; in main()
95 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name); in main()
96 if (test_status) in main()
H A Dmemcmp.c32 static int test_status; variable
33 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
79 test_status = 0; in main()
92 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name); in main()
93 if (test_status) in main()
H A Dstpcpy.c33 static int test_status; variable
34 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
85 test_status = 0; in main()
94 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name); in main()
95 if (test_status) in main()
H A Dmemcpy.c34 static int test_status; variable
35 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
85 test_status = 0; in main()
94 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name); in main()
95 if (test_status) in main()
H A Dstrcmp.c38 static int test_status; variable
39 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
86 test_status = 0; in main()
99 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name); in main()
100 if (test_status) in main()
H A Dmemset.c31 static int test_status; variable
32 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
93 test_status = 0; in main()
107 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name); in main()
108 if (test_status) in main()
H A Dstrncmp.c32 static int test_status; variable
33 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
82 test_status = 0; in main()
99 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name); in main()
100 if (test_status) in main()
H A Dmemmove.c32 static int test_status; variable
33 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
127 test_status = 0; in main()
140 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name); in main()
141 if (test_status) in main()
/llvm-project-15.0.7/lldb/test/API/commands/platform/basic/
H A DTestPlatformCommand.py45 def test_status(self): member in PlatformCommandTestCase