home *** CD-ROM | disk | FTP | other *** search
- /*
- * c-tree(R) setup test program
- *
- * This program is the CONFIDENTIAL and PROPRIETARY property
- * of FairCom(R) Corporation. Any unauthorized use, reproduction or
- * transfer of this program is strictly prohibited.
- *
- * Copyright (c) 1986, 1987, 1988, 1989 FairCom Corporation
- * (Subject to limited distribution and
- * restricted disclosure only.)
- * *** ALL RIGHTS RESERVED ***
- *
- * 4006 West Broadway
- * Columbia, MO 65203
- *
- *
- * c-tree(R) Version 4.3
- * Release C
- * February 7, 1989 17:30
- *
- */
-
- #include "ctstdr.h"
- #include "ctoptn.h"
-
- #define CTF " 1 3 "
- #define S377 "'\\377'"
-
- typedef struct {
- TEXT mb1;
- } MB;
-
- TEXT getbuf[128];
- TEXT *align[5] = {
- "strange: call FairCom (314) 445-6833",
- "byte",
- "word (2 bytes)",
- "strange: call FairCom (314) 445-6833",
- "double word (4 bytes)"
- };
-
- main ()
- {
- TEXT buffer[8];
- TEXT t255,*tp;
- COUNT i,done,d[4],afactor;
- UCOUNT tu;
-
- TEXT *th,*tl;
- MB mb[2];
- struct {
- POINTER pa1;
- TEXT pa2;
- POINTER pp;
- POINTER pa3;
- POINTER pa4;
- } p;
- struct {
- POINTER ca1;
- TEXT ca2;
- COUNT cc;
- } c;
- struct {
- POINTER aa1;
- TEXT aa2;
- TEXT aa[3];
- } a;
- struct {
- POINTER sa1;
- TEXT sa2;
- struct {
- POINTER sa3;
- TEXT sa4;
- } ss;
- } s;
- struct {
- POINTER ta1;
- TEXT ta2;
- TEXT tt;
- } t;
-
-
- if (sizeof(COUNT) != 2 || sizeof(UCOUNT) != 2 || sizeof(POINTER) !=4) {
- printf(
- "\n\nBefore continuing with CTTEST be sure that the following types are");
- printf(
- "\ncorrectly sized. Make the necessary changes in CTPORT.H.\n\n");
- printf(" COUNT UCOUNT POINTER\n");
- printf(" ------- ------- -------\n");
- printf(" Should be: 2 bytes 2 bytes 4 bytes\n");
- printf("Actual size: %d %d %d\n\n",
- sizeof(COUNT),sizeof(UCOUNT),sizeof(POINTER));
- exit(0);
- } else {
- printf("\n\nCOUNT, UCOUNT & POINTER are properly sized.");
- tu = 40000;
- if (!(tu > 0)) {
- printf(
- "\n\nBefore continuing with CTTEST, be sure that UCOUNT and VRLEN are");
- printf("\nunsigned short integers. See CTPORT.H\n\n");
- exit(0);
- }
- }
- if (sizeof(VRLEN) > sizeof(int)) {
- printf("\n\nVRLEN cannot be larger than an integer.");
- printf("\nDefine VRLEN the same way as UCOUNT.\n");
- exit(0);
- }
-
- t255 = '\377';
- printf("\n\nC255 Test for CTCMPL.H:");
- printf("\n\tUse the following setup in CTCMPL.H - \t#define C255\t");
- if (t255 == -1)
- printf("%d",t255);
- else
- printf(S377);
- printf("\n\t\t\t Current setting - \t#define C255\t");
- if (C255 == 0x00ff)
- printf(S377);
- if (C255 == -1)
- printf("%d",C255);
-
- i = 0x0201;
- tp = (TEXT *) &i;
- printf("\n\nLOW HIGH Test for CTOPTN.H:");
- printf("\n\tUse the following setup in CTOPTN.H - \t#define ");
- if ((*tp & 0x00ff) > (*(tp + 1) & 0x00ff))
- printf("HIGH_LOW");
- else
- printf("LOW_HIGH");
- printf("\n\t\t\t Current setting - \t#define ");
- #ifdef LOW_HIGH
- printf("LOW_HIGH");
- #endif
- #ifdef HIGH_LOW
- printf("HIGH_LOW");
- #endif
-
- /* NULL size test */
- printf("\nNULL Size Test: ");
- if (sizeof(NULL) == sizeof(tp))
- printf("ok (%d bytes)",sizeof(NULL));
- else
- printf("inconsistent (NULL is %d bytes & ptr's are %d bytes)",
- sizeof(NULL),sizeof(tp));
-
-
- /* test of compar function for byte-wise comparisons */
- for (i = 0; i < 4; i++) {
- buffer[i] = 'A';
- buffer[i+4] = '\377';
- }
- tp = buffer;
- #ifdef DS
- done = ((COUNT) *tp & 0x00ff) - ((COUNT) *(tp + 4) & 0x00ff);
- #else
- done = (*tp & 0x00ff) - (*(tp + 4) & 0x00ff);
- #endif
- if (done >= 0) {
- printf(
- "\n\n\nBefore continuing with CTTEST, call FairCom (314) 445-6833 concerning");
- printf(
- "\nthe critical compar function in CTCOMP.C. Please report the following");
- printf(
- "\nthree numbers to FairCom: %d %d %d\n",(*tp & 0x00ff),(*(tp + 4) & 0x00ff),
- done);
- exit(0);
- } else
- printf("\n\ncompar function (CTCOMP.C) test is successful.");
-
- /* PAUSE IN OUTPUT */
- printf("\n\nHit RETURN (or ENTER) to continue...");
- gets(getbuf);
-
-
- printf("\n\nAlignment test for help in computing key segment offsets.");
-
- th = (TEXT *) &p.pa4;
- tl = (TEXT *) &p.pa3;
- i = th - tl;
- if (i == 1) {
- printf(
- "\n\n*** This machine addresses 32 bit words (not bytes). Call ***");
- printf(
- "\n*** FairCom at (314) 445-6833. STATUS & HDRSIZ must be changed. ***");
- afactor = 4;
- } else if (i == 2) {
- printf(
- "\n\n*** This machine addresses words (not bytes). Add 2 to STATUS in ***");
- printf(
- "\n*** CTOPTN.H and add 4 to HDRSIZ in CTOPTN.H. Also each member ***");
- printf(
- "\n*** of a structure will be at least word aligned. In particular,");
- afactor = 2;
- } else
- afactor = 1;
-
- printf(" Members of\nstructures will be aligned as follows:\n\n");
- printf("\tMember Type Alignment\n");
- printf("\t----------- -----------------\n");
-
- th = (TEXT *) &p.pp;
- tl = &p.pa2;
- i = (th - tl) * afactor;
- if (i > 4) i = 0;
- printf("\t4 byte int %s\n",align[i]);
-
- th = (TEXT *) &c.cc;
- tl = &c.ca2;
- i = (th - tl) * afactor;
- if (i > 4) i = 0;
- printf("\t2 byte int %s\n",align[i]);
-
- th = (TEXT *) &s.ss;
- tl = &s.sa2;
- i = (th - tl) * afactor;
- if (i > 4) i = 0;
- printf("\tstructure %s\n",align[i]);
-
- th = (TEXT *) a.aa;
- tl = &a.aa2;
- i = (th - tl) * afactor;
- if (i > 4) i = 0;
- printf("\tchar array %s\n",align[i]);
-
- th = &t.tt;
- tl = &t.ta2;
- i = (th - tl) * afactor;
- if (i > 4) i = 0;
- printf("\tchar %s\n",align[i]);
-
- printf("\n\nStructure 'sizeof' Test: ");
- i = sizeof(MB);
- th = &mb[1].mb1;
- tl = &mb[0].mb1;
- if (i == (th - tl))
- printf(" OK");
- else
- printf(
- "\nCall FairCom at (314) 445-6833 to report these two numbers: %d %d\n",
- i, (th - tl));
-
- printf("\n\nShort Integer Input Test for CTOPTN.H:");
-
- done = NO;
- d[1] = d[3] = 5;
- if (sscanf(CTF,"%h %h",d,d+2) == 2 &&
- d[0] == 1 && d[2] == 3 && d[1] == 5 && d[3] == 5) {
- printf(
- "\n\tUse the PERC_H option in CTOPTN.H.\n");
- done = YES;
- }
- if (!done) {
- d[1] = d[3] = 5;
- if (sscanf(CTF,"%d %d",d,d+2) == 2 &&
- d[0] == 1 && d[2] == 3 && d[1] == 5 && d[3] == 5) {
- printf(
- "\n\tUse the PERC_D option in CTOPTN.H.\n");
- done = YES;
- }
- }
- if (!done) {
- d[1] = d[3] = 5;
- if (sscanf(CTF,"%hd %hd",d,d+2) == 2 &&
- d[0] == 1 && d[2] == 3 && d[1] == 5 && d[3] == 5) {
- printf(
- "\n\tUse the PERC_HD option in CTOPTN.H.\n");
- done = YES;
- }
- }
- if (!done)
- printf(
- "\n\n*** COMPILER DOES NOT CONFORM TO KNOWN CONVENTIONS ***\n");
-
- printf("\tCurrent setting - ");
- #ifdef PERC_H
- printf("PERC_H");
- #endif
- #ifdef PERC_D
- printf("PERC_D");
- #endif
- #ifdef PERC_HD
- printf("PERC_HD");
- #endif
-
- #ifdef RTREE
- printf("\n\nr-tree SUPPORT IS ENABLED.");
- #else
- printf("\n\nr-tree SUPPORT IS DISABLED.");
- #endif
-
-
- #ifdef CTSERVER
- printf("\n\nc-tree BACKGROUND SERVER IS ENABLED.");
- #else
- printf("\nc-tree BACKGROUND SERVER IS DISABLED.");
- #endif
-
- printf("\nEnd Of CTTEST\n");
- exit(0);
- }
-
-