mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-04 17:31:49 +00:00
6ead1d4caf
These are currently only run by the new DOIT3 test-running script. Note that these tests are designed to be applicable to most implementations of C95/C99/C11, not just ORCA/C. They do make certain assumptions not guaranteed by the standards (e.g. power of 2 types and some properties of IEEE-like FP), but in general those assumptions should be true for most 'normal' systems.
21 lines
342 B
C
21 lines
342 B
C
/*
|
|
* Test support for digraphs (C95).
|
|
*/
|
|
|
|
%:include <stdio.h>
|
|
|
|
#define merge(a,b) a%:%:b
|
|
|
|
int main(void) <%
|
|
merge(in,t) a<:1] = {123%>;
|
|
|
|
if (a[0:> != 123)
|
|
goto Fail;
|
|
|
|
printf ("Passed Conformance Test c95digraph\n");
|
|
return 0;
|
|
|
|
Fail:
|
|
printf ("Failed Conformance Test c95digraph\n");
|
|
}
|