chiark / gitweb /
regress: Introduce hnonfuzz.c and Ttestinputfd
[adns.git] / regress / hnonfuzz.c
1 /* nhonfuzz.c
2  * (part of complex test harness, not of the library)
3  * - routines used for record and playback but not for fuzzing
4  *
5  *  This file is part of adns, which is
6  *    Copyright (C) 1997-2000,2003,2006,2014-2016  Ian Jackson
7  *    Copyright (C) 2014  Mark Wooding
8  *    Copyright (C) 1999-2000,2003,2006  Tony Finch
9  *    Copyright (C) 1991 Massachusetts Institute of Technology
10  *  (See the file INSTALL for full details.)
11  *  
12  *  This program is free software; you can redistribute it and/or modify
13  *  it under the terms of the GNU General Public License as published by
14  *  the Free Software Foundation; either version 3, or (at your option)
15  *  any later version.
16  *  
17  *  This program is distributed in the hope that it will be useful,
18  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  *  GNU General Public License for more details.
21  *  
22  *  You should have received a copy of the GNU General Public License
23  *  along with this program; if not, write to the Free Software Foundation.
24  */
25
26 #include <stdio.h>
27
28 #include "harness.h"
29
30 int Ttestinputfd(void) {
31   const char *fdstr= getenv("ADNS_TEST_IN_FD");
32   if (!fdstr) return -1;
33   return atoi(fdstr);
34 }