Ignore:
Timestamp:
Aug 25, 2000, 6:47:28 AM (25 years ago)
Author:
bird
Message:

Coding more or less completed.

File:
1 edited

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:46 bird Exp $
     1/* $Id: win32ktst.c,v 1.1.4.6 2000-08-25 04:47:28 bird Exp $
    22 *
    33 * Win32k test module.
     
    862862     * Do the real execution.
    863863     */
    864     printf("--- TestcaseExeLoad3 - loading win32ktst.exe (LX image) ----\n");
     864    printf("--- TestcaseExeLoad2 - loading win32ktst.exe (LX image) ----\n");
    865865    rc = CalltkExecPgm(EXEC_LOAD, NULL, NULL, "win32ktst.exe");
    866866    if (rc == NO_ERROR)
    867867    {
    868868        psz = "BIN\\DEBUG\\LIBCONV.EXE\0";
    869         printf("--- TestcaseExeLoad3 - loading libconv.exe (LX image) ----\n");
     869        printf("--- TestcaseExeLoad2 - loading libconv.exe (LX image) ----\n");
    870870        rc = CalltkExecPgm(EXEC_LOAD, NULL, NULL, "bin\\debug\\libconv.exe");
    871871        if (rc == NO_ERROR)
     
    887887    {
    888888        psz = "REXX\\TST.CMD\0OriginalArgument1 OriginalArgument2\0OriginalArgument3\0";
    889         printf("--- TestcaseExeLoad3 - loading rexx\\tst.cmd (REXX script) ----\n");
     889        printf("--- TestcaseExeLoad2 - loading rexx\\tst.cmd (REXX script) ----\n");
    890890        rc = CalltkExecPgm(EXEC_LOAD, psz, NULL, "rexx\\tst.cmd");
    891891        if (rc == NO_ERROR)
     
    905905    {
    906906        psz = "TEST\\TST.SH\0OrgArg1 OrgArg2\0OrgArg3\0";
    907         printf("--- TestcaseExeLoad3 - loading test\\tst.sh (UNIX shell script) ----\n");
     907        printf("--- TestcaseExeLoad2 - loading test\\tst.sh (UNIX shell script) ----\n");
    908908        rc = CalltkExecPgm(EXEC_LOAD, psz, NULL, "test\\tst.sh");
    909909        if (rc == NO_ERROR)
     
    923923    {
    924924        psz = "TEST\\TST2.SH\0OrgArg1 OrgArg2\0OrgArg3\0";
    925         printf("--- TestcaseExeLoad3 - loading test\\tst2.sh (UNIX shell script) ----\n");
     925        printf("--- TestcaseExeLoad2 - loading test\\tst2.sh (UNIX shell script) ----\n");
    926926        rc = CalltkExecPgm(EXEC_LOAD, psz, NULL, "test\\tst2.sh");
    927927        if (rc == NO_ERROR)
     
    940940    if (rc == NO_ERROR)
    941941    {
    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");
    944945        if (rc == NO_ERROR)
    945946        {
    946947            /* check result */
    947             psz = "E:\\WIN32PROG\\SOL\\SOL.EXE\0";
    948948            cch = strlen(psz) + 1 + 1;
    949             if (memcmp(achTkExecPgmArguments + strlen(achTkExecPgmArguments) + 1, psz, cch) != 0)
     949            if (memcmp(achTkExecPgmArguments, psz, cch) != 0)
    950950            {
    951951                rc  = ERROR_BAD_ARGUMENTS;
Note: See TracChangeset for help on using the changeset viewer.