Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtterm / tests / Ctm / Ctm.c
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: Ctm.c /main/3 1995/10/31 11:50:16 rswiston $ */
24 #include <stdio.h>
25 #include <math.h>
26 #include  "synvar.h"
27
28 #ifdef LOG
29 FILE *TermLog;
30 #define SAVELOG  fclose(TermLog); TermLog = fopen("term.log", "a");
31 #endif
32
33 char LogStr[200];
34
35
36
37 static char *OptionArr[] = { 
38 /*0*/ " -tm 'intr ! quit @ erase # kill $ eof % eol ^ swtch & start * stop ( susp ) dsusp _'"                                 /* Normal option */
39 };
40
41
42 static char *LogAction[] = { 
43 /*0*/ "Testing Option -tm "             
44 };
45
46 #define ArrCount    (int) (sizeof(OptionArr) / sizeof(char *))
47
48 main(argc, argv)
49 int argc;
50 char *argv[];
51 {
52    SynStatus Result;
53    char Command[NEED_LEN], *Shell, *Path;
54    int i;
55      
56 #ifdef LOG
57 if ((TermLog = fopen("term.log", "a")) == NULL) {
58    if ((TermLog = fopen("term.log", "w")) == NULL)
59       {printf("Logfile could not be opened \n"); exit(-1);}
60 }
61 LogError("****************************************************************************");
62 LogTime();
63 sprintf(Command, "TestName: <%s> STARTS\n", argv[0]);
64 LogError(Command);
65 #endif 
66      InitTest(argc, argv);
67      for (i=0; i < ArrCount; i++) {
68        strcpy(Command, TERM_EMU);  
69        strcat(Command, OptionArr[i]);
70        CheckCapsLock();
71        LogError(LogAction[i]);
72        ExecCommand(Command); sleep(2);
73        if (WaitWinMap("TermWin") < 0) continue;
74        ExecCommand("termget"); 
75        CloseTerm("TermWin");
76        WaitWinUnMap("TermWin", 10L);
77 sleep(2);
78      }
79      CloseTest(False);
80 #ifdef LOG
81 sprintf(Command, "TestName: <%s> ENDS\n", argv[0]);
82 LogError(Command);
83 LogError("****************************************************************************");
84 fclose(TermLog);
85 #endif
86 }
87