Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygrun.c « testsuite « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50c51876ed31391ff5c6a6a4fc36dd44b33b37c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* cygrun.c: testsuite support program

This file is part of Cygwin.

This software is a copyrighted work licensed under the terms of the
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
details. */

/* This program is intended to be used only by the testsuite.  It runs
   programs without using the cygwin api, so that the just-built dll
   can be tested without interference from the currently installed
   dll. */

#include <stdio.h>
#include <windows.h>
#include <stdlib.h>

int
main (int argc, char **argv)
{
  STARTUPINFO sa;
  PROCESS_INFORMATION pi;
  DWORD res;
  DWORD ec = 1;
  DWORD timeout = 60 * 1000;

  if (argc < 2)
    {
      fprintf (stderr, "Usage: cygrun [program]\n");
      exit (1);
    }

  int i;
  for (i = 1; i < argc; ++i)
    {
      if (strcmp (argv[i], "-notimeout") == 0)
	timeout = INFINITE;
      else
	break;
    }

  char *command = argv[i];

  if (i < (argc-1))
    {
      fprintf (stderr, "cygrun: excess arguments\n");
      exit (1);
    }

  SetEnvironmentVariable ("CYGWIN_TESTING", "1");

  memset (&sa, 0, sizeof (sa));
  memset (&pi, 0, sizeof (pi));
  if (!CreateProcess (0, command, 0, 0, 1, 0, 0, 0, &sa, &pi))
    {
      fprintf (stderr, "CreateProcess %s failed\n", command);
      exit (1);
    }

  res = WaitForSingleObject (pi.hProcess, timeout);

  if (res == WAIT_TIMEOUT)
    {
      char cmd[1024];
      // there is no simple API to kill a Windows process tree
      sprintf(cmd, "taskkill /f /t /pid %lu", GetProcessId(pi.hProcess));
      system(cmd);
      fprintf (stderr, "Timeout\n");
      ec = 124;
    }
  else
    {
      GetExitCodeProcess (pi.hProcess, &ec);
    }

  CloseHandle (pi.hProcess);
  CloseHandle (pi.hThread);
  if (ec > 0xff)
    ec >>= 8;
  return ec;
}