|
|
Jump to this file's LXR Page |
|
|
File: [CENS] / emstar / fusd / test / zombietest.c
(download)
/
(as text)
Revision: 1.4, Wed Feb 11 09:41:07 2004 UTC (5 years, 9 months ago) by jelson Branch: MAIN CVS Tags: scale_radio_channel, rdd_alpha_version_1, pregeonet, nims-lab-Sep07-2004, nims-jr-Sep05-04, mote, lessgps_release, kiss_release, bp_scale_radio_channel, acoustic-05-18-06, PRE_TOSNIC_FIX, PRE_NOMEGA_MOTENIC, PRE_MOTENIC_CLEANUP, PRE_CEILING_FIX, PRE_64BIT, MOTENIC_PRE_BUGFIX_20050415, LESSGPS_1_00, LAURA_CALIBRATION_EXPERIMENTS, KISS_1_0, HOSTMOTE_V_6_EXPERIMENTAL, HOSTMOTE_PROTOCOL_VERSION_7, HOSTMOTE_PROTOCOL_VERSION_6_WITH_HOSTMOAP, HOSTMOTE_PROTOCOL_VERSION_5_WITH_HOSTMOAP, HOSTMOTE_PROTOCOL_VERSION_5, HOSTMOTE_PROTOCOL_VERSION_4, HOSTMOTE_PROTOCOL_VERSION_3, HEAD, ESS_RELEASE_3_5, ESS_RELEASE_3_4, ESS_RELEASE_3_3, ESS_RELEASE_3_2, ESS_RELEASE_3_1, ESS_RELEASE_3_0, ESS_RELEASE_2_0, ESS_CONNECTIVITY, ESS_CENTROUTE_TESTING, ESS2-CMS-V1_5_pretest, ESS2-CMS-V1_4cMergeSympathy_2, ESS2-CMS-V1_4c, ESS2-CMS-V1_4b, ESS2-CMS-V1_4a, ESS2-CMS-V1_3, ESS2-CMS-V1_2, ESS2-CMS-V1_1, ESS2-CMS-V1_0, EMSTAR_RELEASE_2_5, EMSTAR_RELEASE_2_1_BRANCH, EMSTAR_RELEASE_2_1, EMSTAR_RELEASE_2_0_beta1, EMSTAR_RELEASE_2_0, EMSTAR_RELEASE_1_3_2, EMSTAR_RELEASE_1_3_1, EMSTAR_RELEASE_1_3, EMSTAR_PRE_HTML, CYCLOPS_RELEASE_CANDIDATE_2_0, CYCLOPS_PRERELEASE_STABLE, CENTROUTE_EMSTAR_SOCKETS, BG_1_0, BANGLADESH_ARSENIC_1_2, BANGLADESH_ARSENIC_1_1, AMARSS_JR_DEPLOYMENT_6_05_07 Changes since 1.3: +2 -2 lines added FUSD regression tests |
/*
*
* Copyright (c) 2003 The Regents of the University of California. All
* rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Neither the name of the University nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
/*
*
* zombietest.c: A test program as part of FUSD.
*
* This regression test program checks to make sure that clients see a
* valid close(), even if the device has zombified.
*
* $Id: zombietest.c,v 1.4 2004/02/11 09:41:07 jelson Exp $
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/wait.h>
#include <signal.h>
#include <string.h>
#include "fusd.h"
#define DEVNAME "/dev/testfusd/zombietest"
#define ITERATIONS 1
#define FORK \
tmp = fork(); \
if (tmp < 0) { perror("can't fork"); exit(1); } \
if (tmp == 0)
int n;
void done(int signo)
{
static int num_done = 0;
int status;
pid_t pid;
while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
printf("pid [%d] done\n", pid);
num_done++;
}
/* if all N clients, plus the server, are done... we're done */
if (num_done == n+1) {
printf("test complete\n");
exit(0);
}
}
int _open(struct fusd_file_info *file)
{
printf("[%d] responding to open request and exiting\n", getpid());
fusd_return(file, 0);
exit(1);
}
int main(int argc, char *argv[])
{
int tmp;
n = 1;
printf("master is pid %d\n", getpid());
signal(SIGCHLD, done);
/* fork server */
FORK {
fusd_file_operations_t fops = {
open: _open
};
int fd;
if ((fd = fusd_register(DEVNAME, 0666, 0, &fops)) < 0) {
perror("Register failed");
exit(1);
}
printf("[%d] register succeeded, running...\n", getpid());
fusd_run();
exit(1);
}
sleep(3);
FORK {
int fd;
printf("[%d] trying to open...\n", getpid());
fd = open(DEVNAME, O_RDWR);
printf("[%d] got %d (%m)\n", getpid(), fd);
sleep(2);
printf("[%d] trying to close\n", getpid());
fd = close(fd);
printf("[%d] got %d (%m)\n", getpid(), fd);
exit(1);
}
/* parent: wait for children to all exit */
while (1)
pause();
}
| CENS CVS Mailing List |
Powered by ViewCVS 0.9.2 |