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 82 83 84 85 86 87 88
|
/*
* Copyright (c) 2001-2002, 2004 Proofpoint, Inc. and its suppliers.
* All rights reserved.
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the sendmail distribution.
*/
#include <sm/gen.h>
SM_RCSID("@(#)$Id: t-event.c,v 1.14 2013-11-22 20:51:43 ca Exp $")
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
# include <sys/wait.h>
#if SM_CONF_SETITIMER
# include <sm/time.h>
#endif
#include <sm/clock.h>
#include <sm/test.h>
static void evcheck __P((int));
static void ev1 __P((int));
static int check;
static void
evcheck(arg)
int arg;
{
SM_TEST(arg == 3);
SM_TEST(check == 0);
check++;
}
static void
ev1(arg)
int arg;
{
SM_TEST(arg == 1);
}
/* define as x if you want debug output */
#define DBG_OUT(x)
int
main(argc, argv)
int argc;
char *argv[];
{
SM_EVENT *ev;
sm_test_begin(argc, argv, "test event handling");
fprintf(stdout, "This test may hang. If there is no output within twelve seconds, abort it\nand recompile with -DSM_CONF_SETITIMER=%d\n",
SM_CONF_SETITIMER == 0 ? 1 : 0);
sleep(1);
SM_TEST(1 == 1);
DBG_OUT(fprintf(stdout, "We're back, test 1 seems to work.\n"));
ev = sm_seteventm(1000, ev1, 1);
sleep(1);
SM_TEST(2 == 2);
DBG_OUT(fprintf(stdout, "We're back, test 2 seems to work.\n"));
/* schedule an event in 9s */
ev = sm_seteventm(9000, ev1, 2);
sleep(1);
/* clear the event before it can fire */
sm_clrevent(ev);
SM_TEST(3 == 3);
DBG_OUT(fprintf(stdout, "We're back, test 3 seems to work.\n"));
/* schedule an event in 1s */
check = 0;
ev = sm_seteventm(1000, evcheck, 3);
sleep(2);
/* clear the event */
sm_clrevent(ev);
SM_TEST(4 == 4);
SM_TEST(check == 1);
DBG_OUT(fprintf(stdout, "We're back, test 4 seems to work.\n"));
return sm_test_end();
}
|