Changeset 4090 for branches/GRACE/src/win32k/test/win32ktst.c
- Timestamp:
- Aug 25, 2000, 6:47:28 AM (25 years ago)
- File:
-
- 1 edited
-
branches/GRACE/src/win32k/test/win32ktst.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/GRACE/src/win32k/test/win32ktst.c
r4073 r4090 1 /* $Id: win32ktst.c,v 1.1.4. 5 2000-08-23 04:25:46bird Exp $1 /* $Id: win32ktst.c,v 1.1.4.6 2000-08-25 04:47:28 bird Exp $ 2 2 * 3 3 * Win32k test module. … … 862 862 * Do the real execution. 863 863 */ 864 printf("--- TestcaseExeLoad 3- loading win32ktst.exe (LX image) ----\n");864 printf("--- TestcaseExeLoad2 - loading win32ktst.exe (LX image) ----\n"); 865 865 rc = CalltkExecPgm(EXEC_LOAD, NULL, NULL, "win32ktst.exe"); 866 866 if (rc == NO_ERROR) 867 867 { 868 868 psz = "BIN\\DEBUG\\LIBCONV.EXE\0"; 869 printf("--- TestcaseExeLoad 3- loading libconv.exe (LX image) ----\n");869 printf("--- TestcaseExeLoad2 - loading libconv.exe (LX image) ----\n"); 870 870 rc = CalltkExecPgm(EXEC_LOAD, NULL, NULL, "bin\\debug\\libconv.exe"); 871 871 if (rc == NO_ERROR) … … 887 887 { 888 888 psz = "REXX\\TST.CMD\0OriginalArgument1 OriginalArgument2\0OriginalArgument3\0"; 889 printf("--- TestcaseExeLoad 3- loading rexx\\tst.cmd (REXX script) ----\n");889 printf("--- TestcaseExeLoad2 - loading rexx\\tst.cmd (REXX script) ----\n"); 890 890 rc = CalltkExecPgm(EXEC_LOAD, psz, NULL, "rexx\\tst.cmd"); 891 891 if (rc == NO_ERROR) … … 905 905 { 906 906 psz = "TEST\\TST.SH\0OrgArg1 OrgArg2\0OrgArg3\0"; 907 printf("--- TestcaseExeLoad 3- loading test\\tst.sh (UNIX shell script) ----\n");907 printf("--- TestcaseExeLoad2 - loading test\\tst.sh (UNIX shell script) ----\n"); 908 908 rc = CalltkExecPgm(EXEC_LOAD, psz, NULL, "test\\tst.sh"); 909 909 if (rc == NO_ERROR) … … 923 923 { 924 924 psz = "TEST\\TST2.SH\0OrgArg1 OrgArg2\0OrgArg3\0"; 925 printf("--- TestcaseExeLoad 3- loading test\\tst2.sh (UNIX shell script) ----\n");925 printf("--- TestcaseExeLoad2 - loading test\\tst2.sh (UNIX shell script) ----\n"); 926 926 rc = CalltkExecPgm(EXEC_LOAD, psz, NULL, "test\\tst2.sh"); 927 927 if (rc == NO_ERROR) … … 940 940 if (rc == NO_ERROR) 941 941 { 942 printf("--- TestcaseExeLoad3 - loading SOL.EXE (PE image) ----\n"); 943 rc = CalltkExecPgm(EXEC_LOAD, NULL, NULL, "e:\\Win32Prog\\Sol\\Sol.exe"); 942 psz = "E:\\WIN32PROG\\SOL\\SOL.EXE\0"; 943 printf("--- TestcaseExeLoad2 - loading SOL.EXE (PE image) ----\n"); 944 rc = CalltkExecPgm(EXEC_LOAD, psz, NULL, "e:\\Win32Prog\\Sol\\Sol.exe"); 944 945 if (rc == NO_ERROR) 945 946 { 946 947 /* check result */ 947 psz = "E:\\WIN32PROG\\SOL\\SOL.EXE\0";948 948 cch = strlen(psz) + 1 + 1; 949 if (memcmp(achTkExecPgmArguments + strlen(achTkExecPgmArguments) + 1, psz, cch) != 0)949 if (memcmp(achTkExecPgmArguments, psz, cch) != 0) 950 950 { 951 951 rc = ERROR_BAD_ARGUMENTS;
Note:
See TracChangeset
for help on using the changeset viewer.
