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.
73 lines
1.6 KiB
C++
73 lines
1.6 KiB
C++
/* Conformance Test 18.3.0.1: Verification of realloc library function */
|
|
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
|
|
int printf(const char *, ...);
|
|
|
|
struct S { int i; extended e; char ch [40]; };
|
|
|
|
int main (void)
|
|
{
|
|
struct S *rgn, *ptr1;
|
|
struct S s [3] = { {1, 1.0, "hey"}, {2, 2.0, "you"}, {3, 3.0, "person!"} };
|
|
|
|
|
|
/* Pass realloc a NULL pointer to initialally allocate some memory. */
|
|
|
|
rgn = (struct S *) realloc (NULL, 3 * (sizeof (struct S)) );
|
|
if (rgn == NULL)
|
|
goto Fail1;
|
|
|
|
|
|
/* Copy the structure array s into the allocated area. */
|
|
|
|
memcpy (rgn, s, sizeof (s));
|
|
|
|
|
|
/* Reallocate a larger area -- ensure initial contents are preserved. */
|
|
|
|
rgn = (struct S *) realloc (rgn, 5 * (sizeof (struct S)) );
|
|
if (rgn == NULL)
|
|
goto Fail1;
|
|
|
|
ptr1 = rgn;
|
|
if ((ptr1->i != 1) || (fabs(ptr1->e - 1.0) > 0.00001))
|
|
goto Fail;
|
|
if (strcmp (ptr1->ch, "hey"))
|
|
goto Fail;
|
|
ptr1 += 1;
|
|
|
|
if ((ptr1->i != 2) || (fabs(ptr1->e - 2.0) > 0.00001))
|
|
goto Fail;
|
|
if (strcmp (ptr1->ch, "you"))
|
|
goto Fail;
|
|
ptr1 += 1;
|
|
|
|
if ((ptr1->i != 3) || (fabs(ptr1->e - 3.0) > 0.00001))
|
|
goto Fail;
|
|
if (strcmp (ptr1->ch, "person!"))
|
|
goto Fail;
|
|
|
|
|
|
/* Ensure passing a size of 0 deallocates the memory. */
|
|
|
|
rgn = (struct S *) realloc (rgn, 0);
|
|
if (rgn != NULL)
|
|
goto Fail1;
|
|
|
|
|
|
printf ("Passed Conformance Test 18.3.0.1\n");
|
|
return 0;
|
|
|
|
Fail:
|
|
printf ("Failed Conformance Test 18.3.0.1\n");
|
|
return 0;
|
|
|
|
Fail1:
|
|
printf ("Unable to allocate memory for Conformance Test 18.3.0.1\n");
|
|
return 0;
|
|
}
|