diff options
author | Guy Harris <guy@alum.mit.edu> | 2020-02-04 19:08:10 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2020-02-04 19:08:10 -0800 |
commit | 92e3315c9ff248778c825015ac16553d4b8b4f7f (patch) | |
tree | a6d3afea20df92e79a9ccde4318794d1070af514 /Makefile.in | |
parent | 895e3dfd766bd2858e1514ec21554c22de587149 (diff) | |
download | tcpdump-92e3315c9ff248778c825015ac16553d4b8b4f7f.tar.gz |
Do some tests based on the type of floating-point arithmetic tcpdump does.
Add a --fp-type flag to tcpdump, which causes it to do a floating-point
operation and, based on the result of the operation, prints out
"FPTYPE{n}", where {n} is a number indicating the result.
Have tests/TESTrun run "./tcpdump --fp-type" and set a HAVE_ key based
on that. Run some tests only for FPTYPE1.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 694fb18b..2b3b7e3d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -70,7 +70,7 @@ DEPENDENCY_CFLAG = @DEPENDENCY_CFLAG@ @rm -f $@ $(CC) $(FULL_CFLAGS) -c $(srcdir)/$*.c -CSRC = tcpdump.c +CSRC = fptype.c tcpdump.c LIBNETDISSECT_SRC=\ addrtoname.c \ |