Files
yallie 9fa3874800 Added the contents of the archive.
Moved the original file to the archive subfolder.
2017-11-20 16:11:42 +03:00

101 lines
2.8 KiB
C

/*=============================================================
**
** Source: test1.c
**
** Purpose: Debugs the helper application. Checks that certain events, in
** particular the OUTPUT_DEBUG_STRING_EVENT, is generated correctly
** and gives the correct values.
**
**
** Copyright (c) 2002 Microsoft Corporation. All rights reserved.
**
** The use and distribution terms for this software are contained in the file
** named license.txt, which can be found in the root of this distribution.
** By using this software in any fashion, you are agreeing to be bound by the
** terms of this license.
**
** You must not remove this notice, or any other, from this software.
**
**
**============================================================*/
#include <palsuite.h>
const int DELAY_MS = 2000;
struct OutputCheck
{
DWORD ExpectedEventCode;
DWORD ExpectedUnicode;
char *ExpectedStr;
};
int __cdecl main(int argc, char *argv[])
{
PROCESS_INFORMATION pi;
STARTUPINFO si;
if(0 != (PAL_Initialize(argc, argv)))
{
return FAIL;
}
ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );
/* Create a new process. This is the process to be Debugged */
if(!CreateProcess( NULL, "helper", NULL, NULL,
FALSE, 0, NULL, NULL, &si, &pi))
{
Fail("ERROR: CreateProcess failed to load executable 'helper'. "
"GetLastError() returned %d.\n",GetLastError());
}
/* This is the main loop. It exits when the process which is being
debugged is finished executing.
*/
while(1)
{
DWORD dwRet = 0;
dwRet = WaitForSingleObject(pi.hProcess,
DELAY_MS /* Wait for 2 seconds max*/
);
if (dwRet != WAIT_OBJECT_0)
{
Trace("WaitForSingleObjectTest:WaitForSingleObject "
"failed (%x) after waiting %d seconds for the helper\n",
GetLastError(), DELAY_MS / 1000);
}
else
{
DWORD dwExitCode;
/* check the exit code from the process */
if( ! GetExitCodeProcess( pi.hProcess, &dwExitCode ) )
{
DWORD dwError;
dwError = GetLastError();
CloseHandle ( pi.hProcess );
CloseHandle ( pi.hThread );
Fail( "GetExitCodeProcess call failed with error code %d\n",
dwError );
}
if(dwExitCode != STILL_ACTIVE) {
CloseHandle(pi.hThread);
CloseHandle(pi.hProcess);
break;
}
Trace("still executing %d..\n", dwExitCode);
}
}
PAL_Terminate();
return PASS;
}