mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-17 20:06:49 +00:00
91d33b586d
The main changes made to most tests are: *Declarations always include explicit types, not relying on implicit int. The declaration of main in most test programs is changed to be "int main (void) {...}", adding an explicit return type and a prototype. (There are still some non-prototyped functions, though.) *Functions are always declared before use, either by including a header or by providing a declaration for the specific function. The latter approach is usually used for printf, to avoid requiring ORCA/C to process stdio.h when compiling every test case (which might make test runs noticeably slower). *Make all return statements in non-void functions (e.g. main) return a value. *Avoid some instances of undefined behavior and type errors in printf and scanf calls. Several miscellaneous bugs are also fixed. There are still a couple test cases that intentionally rely on the C89 behavior, to ensure it still works.
82 lines
2.2 KiB
C++
82 lines
2.2 KiB
C++
/* Conformance Test 15.6.0.1: Verification of strspn, strcspn, strpbrk, and */
|
|
/* strrpbrk functions */
|
|
|
|
#include <stddef.h>
|
|
#include <string.h>
|
|
|
|
int printf(const char *, ...);
|
|
|
|
int main (void)
|
|
{
|
|
char s1 [80] = "a b c d e f g h i j k : ' - _ + ";
|
|
char *strPtr;
|
|
size_t i;
|
|
|
|
|
|
/* strspn: find length of first run of chars from set */
|
|
|
|
i = strspn (s1, " abcde cbad "); /* search s1 for only chars in set */
|
|
if (i != 10)
|
|
goto Fail;
|
|
|
|
i = strspn (s1, " +_-':kjihgfedcba"); /* all chars in set are in s1 */
|
|
if (i != 32) /* should return length (s1) */
|
|
goto Fail;
|
|
|
|
i = strspn (s1, ""); /* should return 0 */
|
|
if (i != 0)
|
|
goto Fail;
|
|
|
|
|
|
/* strcspn: find length of first run of chars not in set */
|
|
|
|
i = strcspn (s1, "fg:"); /* search s1 for chars not in set */
|
|
if (i != 10)
|
|
goto Fail;
|
|
|
|
i = strcspn (s1, " +_-':kjihgfedcba"); /* all chars in set are in s1 */
|
|
if (i != 0) /* should return 0 */
|
|
goto Fail;
|
|
|
|
i = strcspn (s1, ""); /* should return strlen */
|
|
if (i != strlen(s1))
|
|
goto Fail;
|
|
|
|
|
|
/* strpbrk: return pointer to 1st char in set */
|
|
|
|
strPtr = strpbrk (s1, "fg:"); /* search s1 for chars not in set */
|
|
if (strPtr != &(s1 [10]))
|
|
goto Fail;
|
|
|
|
strPtr = strpbrk (s1, " +_-':kjihgfedcba"); /* all chars in set are in s1 */
|
|
if (strPtr != s1) /* should return ptr to start*/
|
|
goto Fail;
|
|
|
|
strPtr = strpbrk (s1, ""); /* should return NULL */
|
|
if (strPtr != NULL)
|
|
goto Fail;
|
|
|
|
|
|
/* strrpbrk: return pointer to last char in set */
|
|
|
|
strPtr = strrpbrk (s1, "fg:"); /* search s1 for last char in set */
|
|
if (strPtr != &(s1 [22]))
|
|
goto Fail;
|
|
|
|
strPtr = strrpbrk (s1, " +_-':kjihgfedcba"); /* all chars in set are in s1 */
|
|
if (strPtr != &(s1[31]))
|
|
goto Fail;
|
|
|
|
strPtr = strrpbrk (s1, ""); /* should return ptr to end of string */
|
|
if (strPtr != NULL)
|
|
goto Fail;
|
|
|
|
|
|
printf ("Passed Conformance Test 15.6.0.1\n");
|
|
return 0;
|
|
|
|
Fail:
|
|
printf ("Failed Conformance Test 15.6.0.1\n");
|
|
}
|