Blame gnulib/tests/test-sys_wait.c

Packit 06dd63
/* Test of <sys/wait.h> substitute.
Packit 06dd63
   Copyright (C) 2009-2019 Free Software Foundation, Inc.
Packit 06dd63
Packit 06dd63
   This program is free software: you can redistribute it and/or modify
Packit 06dd63
   it under the terms of the GNU General Public License as published by
Packit 06dd63
   the Free Software Foundation; either version 3 of the License, or
Packit 06dd63
   (at your option) any later version.
Packit 06dd63
Packit 06dd63
   This program is distributed in the hope that it will be useful,
Packit 06dd63
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 06dd63
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 06dd63
   GNU General Public License for more details.
Packit 06dd63
Packit 06dd63
   You should have received a copy of the GNU General Public License
Packit 06dd63
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
Packit 06dd63
Packit 06dd63
/* Written by Eric Blake <ebb9@byu.net>, 2009.  */
Packit 06dd63
Packit 06dd63
#include <config.h>
Packit 06dd63
Packit 06dd63
#include <sys/wait.h>
Packit 06dd63
Packit 06dd63
/* Check for existence of required types.  */
Packit 06dd63
static pid_t a;
Packit 06dd63
Packit 06dd63
#include "test-sys_wait.h"
Packit 06dd63
Packit 06dd63
int
Packit 06dd63
main (void)
Packit 06dd63
{
Packit 06dd63
  if (test_sys_wait_macros ())
Packit 06dd63
    return 1;
Packit 06dd63
Packit 06dd63
#if 0
Packit 06dd63
  switch (WCONTINUED)
Packit 06dd63
    {
Packit 06dd63
  /* Gnulib doesn't guarantee these, yet.  */
Packit 06dd63
    case WCONTINUED:
Packit 06dd63
    case WEXITED:
Packit 06dd63
    case WNOWAIT:
Packit 06dd63
    case WSTOPPED:
Packit 06dd63
      break;
Packit 06dd63
    }
Packit 06dd63
#endif
Packit 06dd63
Packit 06dd63
  return a ? 1 : 0;
Packit 06dd63
}