Initial import of the CDE 2.1.30 sources from the Open Group.

This commit is contained in:
Peter Howkins
2012-03-10 18:21:40 +00:00
commit 83b6996daa
18978 changed files with 3945623 additions and 0 deletions

View File

@@ -0,0 +1,99 @@
/* $XConsortium: Clogging.c /main/3 1995/10/31 11:48:35 rswiston $ */
#include <stdio.h>
#include <math.h>
#include "synvar.h"
#ifdef LOG
FILE *TermLog;
#define SAVELOG fclose(TermLog); TermLog = fopen("term.log", "a");
#endif
char LogStr[200];
static char *OptionArr[] = {
/*0*/ " -l ", /* Normal option */
/*1*/ " -xrm 'dtterm*logging: off' -l ", /* By resource log off*/
/*2*/ " -l ", /* try in un writable directory */
/*3*/ " -xrm 'dtterm*logging: on' -xrm 'dtterm*logFile: Term.Log ' +l ",
/*4*/ " -lf Term.Log"
};
static char *LogAction[] = {
/*0*/ "Testing option: -l ",
/*1*/ "Testing option -xrm 'dtterm*logging: off' -l ",
/*2*/ "Testing option -l in an unwritable directory",
/*3*/ "Testing option -xrm 'dtterm*logging: on' -xrm 'dtterm*logFile: Term.Log' +l",
/*4*/ "Testing option -lf Term.Log"
};
#define ArrCount (int) (sizeof(OptionArr) / sizeof(char *))
main(argc, argv)
int argc;
char *argv[];
{
SynStatus Result;
char Command[NEED_LEN];
int i;
#ifdef LOG
if ((TermLog = fopen("term.log", "a")) == NULL) {
if ((TermLog = fopen("term.log", "w")) == NULL)
{printf("Logfile could not be opened \n"); exit(-1);}
}
LogError("****************************************************************************");
LogTime();
sprintf(Command, "TestName: <%s> STARTS\n", argv[0]);
LogError(Command);
#endif
InitTest(argc, argv);
CheckCapsLock();
ExecCommand("mkdir tmplog");
for (i=0; i < ArrCount; i++) {
strcpy(Command, TERM_EMU);
strcat(Command, OptionArr[i]);
CheckCapsLock();
ExecCommand("mv DTtermLog* tmplog"); sleep(1);
ExecCommand("mv Term.Log tmplog"); sleep(1);
if (i == 2) { /* try in un writable directory */
ExecCommand("mkdir unwrite"); sleep(1);
ExecCommand("chmod 555 unwrite"); sleep(1);
ExecCommand("cd unwrite"); sleep(1);
}
LogError(LogAction[i]);
ExecCommand(Command); sleep(1);
if (WaitWinMap("TermWin") < 0) continue;
AssignWinName("TermWin", TERM_EMU);
JustExit("TermWin");
WaitWinUnMap("TermWin", 10L);
switch (i) {
case 0:
ExecCommand("test-l"); break;
case 1:
ExecCommand("test-l"); break;
case 2:
ExecCommand("test+l"); break;
case 3: ExecCommand("test+l"); break;
case 4: ExecCommand("test-lf"); break;
}
if (i == 2) {
ExecCommand("cd ..");
ExecCommand("rmdir unwrite");
}
sleep(2);
}
ExecCommand("mv tmplog/DTtermLog* ."); sleep(1);
ExecCommand("mv tmplog/Term.Log ."); sleep(1);
ExecCommand("rmdir tmplog");
CloseTest(False);
#ifdef LOG
sprintf(Command, "TestName: <%s> ENDS\n", argv[0]);
LogError(Command);
LogError("****************************************************************************");
fclose(TermLog);
#endif
}

View File

@@ -0,0 +1,51 @@
XCOMM $XConsortium: Imakefile /main/8 1996/10/09 14:07:11 drk $
PROGRAMS = Clogging
INCLUDES = -I. -I$(DTINCLUDESRC)
LOCAL_INCLUDES = -I../shared -I$(TOP)/lib/
SYS_LIBRARIES = -lm
EXTRA_DEFINES = -DLOG -DSYNLIB
#if defined(ApolloArchitecture)
EXTRA_DEFINES = -Dapollo -D_CMDINV
#if defined(SHLIB)
LOCAL_LIBRARIES = -A inlib,$(XLIB)
#endif
#endif
#if defined(SunArchitecture)
SYS_LIBRARIES = -lm -ldl -lgen -lC
SYNLIB=$(TOP)/lib/synlib/libsynlibTst.a
XTST=/usr/openwin/lib/libXtst.a
#endif
#if defined(USLArchitecture)
SYS_LIBRARIES = -lm -ldl -lgen
#endif
#if defined(UXPArchitecture)
SYS_LIBRARIES = -lm -ldl -lgen
#endif
LOCAL_LIBRARIES = ../shared/libtermtest.a $(SYNLIB) $(XTST) $(XEXT) $(XLIB)
SRCS = Clogging.c
OBJS = Clogging.o
NormalLibraryObjectRule()
ComplexProgramTarget($(PROGRAMS))
saber_src: $(SRCS)
XCOMM setopt load_flags $(CFLAGS)
XCOMM load $(SRCS) $(LOCAL_LIBRARIES)
unsaber_src:
XCOMM unload $(SRCS)

View File

@@ -0,0 +1,24 @@
/* $XConsortium: README /main/2 1996/07/15 14:17:58 drk $ */
TestName: Clogging
Description: This program tests the functionality of dtterm with
command line options
"Testing option: -l ",
"Testing option -xrm 'dtterm*logging: off' -l ",
"Testing option -l in an unwritable directory",
"Testing option -xrm 'dtterm*logging: on'
-xrm 'dtterm*logFile: Term.Log' +l",
"Testing option -lf Term.Log"
and invokes one of the programs (test-l, test+l, test-lf)
to verify the functionality
How to run: have two displays, run the program in one pointing to other
display. Also, you have to set the PATH to ../util. (i.e
TOP/cde1/dtterm/tests/util)
commandline: -o dtterm.object