20745333 NTP build should have test target
authorBrian Utterback <brian.utterback@oracle.com>
Mon, 09 May 2016 19:08:07 -0700
changeset 5959 252103d8ad49
parent 5958 8e562647e7c5
child 5960 f9e466739e92
20745333 NTP build should have test target
components/ntp/Makefile
components/ntp/patches/80-weak.patch
components/ntp/patches/85-fix-ntpd-tests.patch
components/ntp/test/results-64.master
--- a/components/ntp/Makefile	Fri May 06 15:58:49 2016 -0700
+++ b/components/ntp/Makefile	Mon May 09 19:08:07 2016 -0700
@@ -39,11 +39,43 @@
 COMPONENT_ARCHIVE_URL=	http://archive.ntp.org/ntp4/ntp-4.2/$(COMPONENT_ARCHIVE)
 COMPONENT_BUGDB= service/ntp
 
+# NTP tests log results in separate files. Instead of geting the output
+# of the build and test and deleting the extra lines, it is easier to just
+# cat together all of the logs. The test TEST_PROGNAME3 tests the system
+# log facility, so we have to get rid of the output because the pid is
+# different every time.
+#
+# In addition, we append the config.h file so we know if the configuration
+# ever changes. We get rid of the version number which changes every time
+# we upgrade and the system string and endian info which is different between
+# intel and SPARC.
+
+COMPONENT_TEST_CREATE_TRANSFORMS = \
+        @if [ -e $(COMPONENT_TEST_MASTER) ]; \
+        then \
+		print "\#!/bin/sh" > $(COMPONENT_TEST_TRANSFORM_CMD); \
+		print '$(FIND) $(BUILD_DIR_64) -name test-\*.log | sort |\\' \
+		    >> $(COMPONENT_TEST_TRANSFORM_CMD); \
+		print ' xargs cat  | grep -v TEST_PROGNAME3 \\' \
+		    >> $(COMPONENT_TEST_TRANSFORM_CMD); \
+		print '> $(COMPONENT_TEST_SNAPSHOT)' \
+		    >> $(COMPONENT_TEST_TRANSFORM_CMD); \
+		print 'cat $(BUILD_DIR_64)/config.h | \\' \
+		    >> $(COMPONENT_TEST_TRANSFORM_CMD); \
+		print 'grep -v VERSION | grep -v STR_SYSTEM | grep -v ENDIAN \\' \
+		    >> $(COMPONENT_TEST_TRANSFORM_CMD); \
+		print '>> $(COMPONENT_TEST_SNAPSHOT)' \
+		    >> $(COMPONENT_TEST_TRANSFORM_CMD); \
+	else \
+		print 'Cannot find $(COMPONENT_TEST_MASTER)'; \
+		exit 2; \
+	fi
+
 TPNO=			20866
 
 PATCH_LEVEL = 0
 
-TEST_TARGET= $(NO_TESTS)
+TEST_TARGET= build $(TEST_64)
 include $(WS_MAKE_RULES)/common.mk
 
 CFLAGS +=	 -D_XOPEN_SOURCE=600 -D__EXTENSIONS__
@@ -64,6 +96,7 @@
 CONFIGURE_OPTIONS +=	--enable-ignore-dns-errors
 CONFIGURE_OPTIONS +=	--without-ntpsnmpd
 CONFIGURE_OPTIONS +=	--with-openssl-libdir=$(LIBDIR)/$(MACH64)
+CONFIGURE_OPTIONS +=	--disable-problem-tests
 
 REQUIRED_PACKAGES += library/libedit
 REQUIRED_PACKAGES += library/security/openssl
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/ntp/patches/80-weak.patch	Mon May 09 19:08:07 2016 -0700
@@ -0,0 +1,17 @@
+This has been submitted as NTP community bug 3021
+http://bugzilla.ntp.org/show_bug.cgi?id=3021
+This patch may be removed when NTP is upgraded to a version that has bug
+3021 fixed in it.
+
+--- sntp/unity/unity_fixture.c
++++ sntp/unity/unity_fixture.c
+@@ -16,7 +16,8 @@ UNITY_FIXTURE_T UnityFixture;
+ int (*outputChar)(int) = putchar;
+ 
+ int verbose = 0;
+-
++#pragma weak setUp
++#pragma weak tearDown
+ void setUp(void);
+ void tearDown(void);
+ void setUp(void)    { /*does nothing*/ }
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/ntp/patches/85-fix-ntpd-tests.patch	Mon May 09 19:08:07 2016 -0700
@@ -0,0 +1,29 @@
+At this time the tests for ntpd require features in the loader that are not
+available in Solaris. We can run the ntp_restrict test by supplying stubs
+for the required symbols. The scanner test is more complex.
+
+--- tests/ntpd/ntp_restrict.c
++++ tests/ntpd/ntp_restrict.c
+@@ -7,6 +7,12 @@
+ 
+ /* Helper functions */
+ 
++unsigned long current_time;
++void 
++mon_start(int);
++void
++mon_stop(int);
++
+ sockaddr_u
+ create_sockaddr_u(short sin_family, unsigned short sin_port, char* ip_addr) {
+ 	sockaddr_u sockaddr;
+--- configure
++++ configure
+@@ -37038,7 +37038,6 @@
+ case "$ntp_ept:$cross:$host" in
+  no:0:*-*-freebsd6.4) ;;
+  no:0:*-*-hpux11.23*) ;;
+- no:0:*-*-solaris*) ;;
+  *) ntp_test_ntp_restrict="yes" ;;
+ esac
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ntp_test_ntp_restrict" >&5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/ntp/test/results-64.master	Mon May 09 19:08:07 2016 -0700
@@ -0,0 +1,3325 @@
+===========================================
+   libevent 2.1.5-beta: ./test-suite.log
+===========================================
+
+# TOTAL: 1
+# PASS:  1
+# SKIP:  0
+# XFAIL: 0
+# FAIL:  0
+# XPASS: 0
+# ERROR: 0
+
+.. contents:: :depth: 2
+
+Running tests:
+EPOLL (timerfd)
+Skipping test
+EPOLL (changelist)
+Skipping test
+EPOLL (timerfd+changelist)
+Skipping test
+EVPORT 
+Skipping test
+KQUEUE 
+Skipping test
+EPOLL 
+Skipping test
+DEVPOLL 
+Skipping test
+POLL 
+Skipping test
+SELECT 
+Skipping test
+WIN32 
+Skipping test
+PASS test/test-script.sh (exit status: 0)
+crypto.c:12:test_MakeMd5Mac:PASS
+crypto.c:13:test_MakeSHA1Mac:PASS
+crypto.c:14:test_VerifyCorrectMD5:PASS
+crypto.c:15:test_VerifySHA1:PASS
+crypto.c:16:test_VerifyFailure:PASS
+crypto.c:17:test_PacketSizeNotMultipleOfFourBytes:PASS
+
+-----------------------
+6 Tests: 
+6 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-crypto (exit status: 0)
+keyFile.c:12:test_ReadEmptyKeyFile:PASS
+keyFile.c:13:test_ReadASCIIKeys:PASS
+keyFile.c:14:test_ReadHexKeys:PASS
+keyFile.c:15:test_ReadKeyFileWithComments:PASS
+keyFile.c:16:test_ReadKeyFileWithInvalidHex:PASS
+
+-----------------------
+5 Tests: 
+5 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-keyFile (exit status: 0)
+kodDatabase.c:14:test_SingleEntryHandling:PASS
+kodDatabase.c:15:test_MultipleEntryHandling:PASS
+kodDatabase.c:16:test_NoMatchInSearch:PASS
+kodDatabase.c:17:test_AddDuplicate:PASS
+kodDatabase.c:18:test_DeleteEntry:PASS
+
+-----------------------
+5 Tests: 
+5 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-kodDatabase (exit status: 0)
+kodFile.c:19:test_ReadEmptyFile:PASS
+kodFile.c:20:test_ReadCorrectFile:PASS
+kodFile.c:21:test_ReadFileWithBlankLines:PASS
+kodFile.c:22:test_WriteEmptyFile:PASS
+kodFile.c:23:test_WriteFileWithSingleEntry:PASS
+kodFile.c:24:test_WriteFileWithMultipleEntries:PASS
+
+-----------------------
+6 Tests: 
+6 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-kodFile (exit status: 0)
+TESTING sntp_init_logging()
+Cannot open log file abcXX
+12345 ABC
+t-log.c:10:testChangePrognameInMysyslog:PASS
+t-log.c:11:testOpenLogfileTest:PASS
+t-log.c:12:testWriteInCustomLogfile:PASS
+
+-----------------------
+3 Tests: 
+3 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-log (exit status: 0)
+
+-----------------------
+0 Tests: 
+0 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-networking (exit status: 0)
+packetHandling.c:17:test_GenerateUnauthenticatedPacket:PASS
+packetHandling.c:18:test_GenerateAuthenticatedPacket:PASS
+packetHandling.c:19:test_OffsetCalculationPositiveOffset:PASS
+packetHandling.c:20:test_OffsetCalculationNegativeOffset:PASS
+packetHandling.c:21:test_HandleUnusableServer:PASS
+packetHandling.c:22:test_HandleUnusablePacket:PASS
+packetHandling.c:23:test_HandleServerAuthenticationFailure:PASS
+packetHandling.c:24:test_HandleKodDemobilize:PASS
+packetHandling.c:25:test_HandleKodRate:PASS
+packetHandling.c:26:test_HandleCorrectPacket:PASS
+
+-----------------------
+10 Tests: 
+10 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-packetHandling (exit status: 0)
+packetProcessing.c:25:test_TooShortLength:PASS
+packetProcessing.c:26:test_LengthNotMultipleOfFour:PASS
+packetProcessing.c:27:test_TooShortExtensionFieldLength:PASS
+packetProcessing.c:28:test_UnauthenticatedPacketReject:PASS
+Crypto NAK = 0x00000000
+packetProcessing.c:29:test_CryptoNAKPacketReject:PASS
+packetProcessing.c:30:test_AuthenticatedPacketInvalid:PASS
+unrecognized key ID = 0x00000032
+packetProcessing.c:31:test_AuthenticatedPacketUnknownKey:PASS
+packetProcessing.c:32:test_ServerVersionTooOld:PASS
+packetProcessing.c:33:test_ServerVersionTooNew:PASS
+packetProcessing.c:34:test_NonWantedMode:PASS
+packetProcessing.c:35:test_KoDRate:PASS
+packetProcessing.c:36:test_KoDDeny:PASS
+packetProcessing.c:37:test_RejectUnsyncedServer:PASS
+packetProcessing.c:38:test_RejectWrongResponseServerMode:PASS
+packetProcessing.c:39:test_AcceptNoSentPacketBroadcastMode:PASS
+packetProcessing.c:40:test_CorrectUnauthenticatedPacket:PASS
+packetProcessing.c:41:test_CorrectAuthenticatedPacketMD5:PASS
+packetProcessing.c:42:test_CorrectAuthenticatedPacketSHA1:PASS
+
+-----------------------
+18 Tests: 
+18 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-packetProcessing (exit status: 0)
+========================================
+   sntp 4.2.8p7: tests/test-suite.log
+========================================
+
+# TOTAL: 9
+# PASS:  9
+# SKIP:  0
+# XFAIL: 0
+# FAIL:  0
+# XPASS: 0
+# ERROR: 0
+
+.. contents:: :depth: 2
+
+utilities.c:16:test_IPv4Address:PASS
+utilities.c:17:test_IPv6Address:PASS
+utilities.c:18:test_SetLiVnMode1:PASS
+utilities.c:19:test_SetLiVnMode2:PASS
+utilities.c:20:test_PktOutput:PASS
+utilities.c:21:test_LfpOutputBinaryFormat:PASS
+utilities.c:22:test_LfpOutputDecimalFormat:PASS
+
+-----------------------
+7 Tests: 
+7 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-utilities (exit status: 0)
+================================================
+   ntp 4.2.8p7: tests/bug-2803/test-suite.log
+================================================
+
+# TOTAL: 1
+# PASS:  1
+# SKIP:  0
+# XFAIL: 0
+# FAIL:  0
+# XPASS: 0
+# ERROR: 0
+
+.. contents:: :depth: 2
+
+a_md5encrypt.c:40:test_Encrypt:PASS
+a_md5encrypt.c:41:test_DecryptValid:PASS
+a_md5encrypt.c:42:test_DecryptInvalid:PASS
+a_md5encrypt.c:43:test_IPv4AddressToRefId:PASS
+a_md5encrypt.c:115:test_IPv6AddressToRefId:IGNORE: Skipping because of big endian problem?
+
+-----------------------
+5 Tests: 
+4 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+1 Ignored 
+
+OK
+PASS test-a_md5encrypt (exit status: 0)
+atoint.c:7:test_RegularPositive:PASS
+atoint.c:8:test_RegularNegative:PASS
+atoint.c:9:test_PositiveOverflowBoundary:PASS
+atoint.c:10:test_NegativeOverflowBoundary:PASS
+atoint.c:11:test_PositiveOverflowBig:PASS
+atoint.c:12:test_IllegalCharacter:PASS
+
+-----------------------
+6 Tests: 
+6 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-atoint (exit status: 0)
+atouint.c:9:test_RegularPositive:PASS
+atouint.c:10:test_PositiveOverflowBoundary:PASS
+atouint.c:11:test_PositiveOverflowBig:PASS
+atouint.c:12:test_Negative:PASS
+atouint.c:13:test_IllegalChar:PASS
+
+-----------------------
+5 Tests: 
+5 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-atouint (exit status: 0)
+authkeys.c:25:test_AddTrustedKeys:PASS
+authkeys.c:26:test_AddUntrustedKey:PASS
+authkeys.c:27:test_HaveKeyCorrect:PASS
+authkeys.c:28:test_HaveKeyIncorrect:PASS
+authkeys.c:29:test_AddWithAuthUseKey:PASS
+authkeys.c:30:test_EmptyKey:PASS
+authkeys.c:31:test_auth_log2:PASS
+
+-----------------------
+7 Tests: 
+7 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-authkeys (exit status: 0)
+buftvtots.c:14:test_ZeroBuffer:PASS
+buftvtots.c:15:test_IntegerAndFractionalBuffer:PASS
+buftvtots.c:16:test_IllegalMicroseconds:PASS
+buftvtots.c:93:test_AlwaysFalseOnWindows:IGNORE: Non-Windows test, skipping...
+
+-----------------------
+4 Tests: 
+3 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+1 Ignored 
+
+OK
+PASS test-buftvtots (exit status: 0)
+calendar.c:22:test_DaySplitMerge:PASS
+calendar.c:23:test_SplitYearDays1:PASS
+calendar.c:24:test_SplitYearDays2:PASS
+calendar.c:25:test_RataDie1:PASS
+calendar.c:26:test_LeapYears1:PASS
+calendar.c:27:test_LeapYears2:PASS
+calendar.c:28:test_RoundTripDate:PASS
+calendar.c:29:test_RoundTripYearStart:PASS
+calendar.c:30:test_RoundTripMonthStart:PASS
+calendar.c:31:test_RoundTripWeekStart:PASS
+calendar.c:32:test_RoundTripDayStart:PASS
+calendar.c:33:test_IsoCalYearsToWeeks:PASS
+calendar.c:34:test_IsoCalWeeksToYearStart:PASS
+calendar.c:35:test_IsoCalWeeksToYearEnd:PASS
+calendar.c:36:test_DaySecToDate:PASS
+
+-----------------------
+15 Tests: 
+15 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-calendar (exit status: 0)
+caljulian.c:16:test_RegularTime:PASS
+caljulian.c:17:test_LeapYear:PASS
+caljulian.c:18:test_uLongBoundary:PASS
+caljulian.c:19:test_uLongWrapped:PASS
+
+-----------------------
+4 Tests: 
+4 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-caljulian (exit status: 0)
+caltontp.c:5:test_DateGivenMonthDay:PASS
+caltontp.c:6:test_DateGivenYearDay:PASS
+caltontp.c:7:test_DateLeapYear:PASS
+caltontp.c:8:test_WraparoundDateIn2036:PASS
+
+-----------------------
+4 Tests: 
+4 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-caltontp (exit status: 0)
+calyearstart.c:11:test_NoWrapInDateRange:PASS
+calyearstart.c:12:test_NoWrapInDateRangeLeapYear:PASS
+calyearstart.c:13:test_WrapInDateRange:PASS
+
+-----------------------
+3 Tests: 
+3 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-calyearstart (exit status: 0)
+clocktime.c:11:test_CurrentYear:PASS
+clocktime.c:12:test_CurrentYearFuzz:PASS
+clocktime.c:13:test_TimeZoneOffset:PASS
+clocktime.c:14:test_WrongYearStart:PASS
+clocktime.c:15:test_PreviousYear:PASS
+clocktime.c:16:test_NextYear:PASS
+clocktime.c:17:test_NoReasonableConversion:PASS
+clocktime.c:19:test_AlwaysInLimit:PASS
+
+-----------------------
+8 Tests: 
+8 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-clocktime (exit status: 0)
+decodenetnum.c:8:test_IPv4AddressOnly:PASS
+decodenetnum.c:9:test_IPv4AddressWithPort:PASS
+decodenetnum.c:87:test_IPv6AddressOnly:IGNORE: IPV6 disabled in build, skipping.
+decodenetnum.c:118:test_IPv6AddressWithPort:IGNORE: IPV6 disabled in build, skipping.
+decodenetnum.c:12:test_IllegalAddress:PASS
+decodenetnum.c:13:test_IllegalCharInPort:PASS
+
+-----------------------
+6 Tests: 
+4 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+2 Ignored 
+
+OK
+PASS test-decodenetnum (exit status: 0)
+hextoint.c:9:test_SingleDigit:PASS
+hextoint.c:10:test_MultipleDigits:PASS
+hextoint.c:11:test_MaxUnsigned:PASS
+hextoint.c:12:test_Overflow:PASS
+hextoint.c:13:test_IllegalChar:PASS
+
+-----------------------
+5 Tests: 
+5 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-hextoint (exit status: 0)
+hextolfp.c:9:test_PositiveInteger:PASS
+hextolfp.c:10:test_NegativeInteger:PASS
+hextolfp.c:11:test_PositiveFraction:PASS
+hextolfp.c:12:test_NegativeFraction:PASS
+hextolfp.c:13:test_IllegalNumberOfInteger:PASS
+hextolfp.c:14:test_IllegalChar:PASS
+
+-----------------------
+6 Tests: 
+6 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-hextolfp (exit status: 0)
+humandate.c:9:test_RegularTime:PASS
+humandate.c:10:test_CurrentTime:PASS
+
+-----------------------
+2 Tests: 
+2 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-humandate (exit status: 0)
+lfpfunc.c:48:test_AdditionLR:PASS
+lfpfunc.c:49:test_AdditionRL:PASS
+lfpfunc.c:50:test_SubtractionLR:PASS
+lfpfunc.c:51:test_SubtractionRL:PASS
+lfpfunc.c:52:test_Negation:PASS
+lfpfunc.c:53:test_Absolute:PASS
+lfpfunc.c:54:test_FDF_RoundTrip:PASS
+lfpfunc.c:55:test_SignedRelOps:PASS
+lfpfunc.c:56:test_UnsignedRelOps:PASS
+
+-----------------------
+9 Tests: 
+9 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-lfpfunc (exit status: 0)
+lfptostr.c:24:test_PositiveInteger:PASS
+lfptostr.c:25:test_NegativeInteger:PASS
+lfptostr.c:26:test_PositiveIntegerWithFraction:PASS
+lfptostr.c:27:test_NegativeIntegerWithFraction:PASS
+lfptostr.c:28:test_RoundingDownToInteger:PASS
+lfptostr.c:29:test_RoundingMiddleToInteger:PASS
+lfptostr.c:30:test_RoundingUpToInteger:PASS
+lfptostr.c:31:test_SingleDecimal:PASS
+lfptostr.c:32:test_MillisecondsRoundingUp:PASS
+lfptostr.c:33:test_MillisecondsRoundingDown:PASS
+lfptostr.c:34:test_UnsignedInteger:PASS
+
+-----------------------
+11 Tests: 
+11 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-lfptostr (exit status: 0)
+modetoa.c:8:test_KnownMode:PASS
+modetoa.c:9:test_UnknownMode:PASS
+
+-----------------------
+2 Tests: 
+2 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-modetoa (exit status: 0)
+msyslog.c:14:test_msnprintf:PASS
+msyslog.c:15:test_msnprintfLiteralPercentm:PASS
+msyslog.c:16:test_msnprintfBackslashLiteralPercentm:PASS
+msyslog.c:17:test_msnprintfBackslashPercent:PASS
+msyslog.c:18:test_msnprintfHangingPercent:PASS
+msyslog.c:19:test_format_errmsgHangingPercent:PASS
+msyslog.c:20:test_msnprintfNullTarget:PASS
+msyslog.c:21:test_msnprintfTruncate:PASS
+
+-----------------------
+8 Tests: 
+8 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-msyslog (exit status: 0)
+netof.c:12:test_ClassBAddress:PASS
+netof.c:13:test_ClassCAddress:PASS
+netof.c:14:test_ClassAAddress:PASS
+netof.c:15:test_IPv6Address:PASS
+
+-----------------------
+4 Tests: 
+4 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-netof (exit status: 0)
+numtoa.c:9:test_Address:PASS
+numtoa.c:10:test_Netmask:PASS
+
+-----------------------
+2 Tests: 
+2 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-numtoa (exit status: 0)
+numtohost.c:9:test_LoopbackNetNonResolve:PASS
+
+-----------------------
+1 Tests: 
+1 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-numtohost (exit status: 0)
+octtoint.c:8:test_SingleDigit:PASS
+octtoint.c:9:test_MultipleDigits:PASS
+octtoint.c:10:test_Zero:PASS
+octtoint.c:11:test_MaximumUnsigned32bit:PASS
+octtoint.c:12:test_Overflow:PASS
+octtoint.c:13:test_IllegalCharacter:PASS
+octtoint.c:14:test_IllegalDigit:PASS
+
+-----------------------
+7 Tests: 
+7 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-octtoint (exit status: 0)
+prettydate.c:10:test_ConstantDate:PASS
+
+-----------------------
+1 Tests: 
+1 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-prettydate (exit status: 0)
+recvbuff.c:8:test_Initialization:PASS
+recvbuff.c:9:test_GetAndFree:PASS
+recvbuff.c:10:test_GetAndFill:PASS
+
+-----------------------
+3 Tests: 
+3 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-recvbuff (exit status: 0)
+refidsmear.c:36:test_refidsmear:PASS
+
+-----------------------
+1 Tests: 
+1 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-refidsmear (exit status: 0)
+refnumtoa.c:13:test_LocalClock:PASS
+refnumtoa.c:14:test_UnknownId:PASS
+
+-----------------------
+2 Tests: 
+2 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-refnumtoa (exit status: 0)
+sfptostr.c:13:test_PositiveInteger:PASS
+sfptostr.c:14:test_NegativeInteger:PASS
+sfptostr.c:15:test_PositiveIntegerPositiveFraction:PASS
+sfptostr.c:16:test_NegativeIntegerNegativeFraction:PASS
+sfptostr.c:17:test_PositiveIntegerNegativeFraction:PASS
+sfptostr.c:18:test_NegativeIntegerPositiveFraction:PASS
+sfptostr.c:19:test_SingleDecimalInteger:PASS
+sfptostr.c:20:test_SingleDecimalRounding:PASS
+
+-----------------------
+8 Tests: 
+8 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-sfptostr (exit status: 0)
+socktoa.c:11:test_IPv4AddressWithPort:PASS
+socktoa.c:64:test_IPv6AddressWithPort:IGNORE: IPV6 disabled in build, skipping.
+socktoa.c:155:test_IgnoreIPv6Fields:IGNORE: IPV6 disabled in build, skipping.
+socktoa.c:14:test_ScopedIPv6AddressWithPort:PASS
+socktoa.c:15:test_HashEqual:PASS
+IPv4 comparision failed, expected: 192.0.2.2(192.0.2.1) but was: 192.0.2.2(192.0.2.2)socktoa.c:16:test_HashNotEqual:PASS
+
+-----------------------
+6 Tests: 
+4 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+2 Ignored 
+
+OK
+PASS test-socktoa (exit status: 0)
+ssl_init.c:17:test_MD5KeyTypeWithoutDigestLength:PASS
+ssl_init.c:18:test_MD5KeyTypeWithDigestLength:PASS
+ssl_init.c:19:test_SHA1KeyTypeWithDigestLength:PASS
+ssl_init.c:20:test_MD5KeyName:PASS
+ssl_init.c:21:test_SHA1KeyName:PASS
+
+-----------------------
+5 Tests: 
+5 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-ssl_init (exit status: 0)
+statestr.c:10:test_PeerRestart:PASS
+statestr.c:11:test_SysUnspecified:PASS
+statestr.c:12:test_ClockCodeExists:PASS
+statestr.c:13:test_ClockCodeUnknown:PASS
+
+-----------------------
+4 Tests: 
+4 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-statestr (exit status: 0)
+strtolfp.c:12:test_PositiveInteger:PASS
+strtolfp.c:13:test_NegativeInteger:PASS
+strtolfp.c:14:test_PositiveFraction:PASS
+strtolfp.c:15:test_NegativeFraction:PASS
+strtolfp.c:16:test_PositiveMsFraction:PASS
+strtolfp.c:17:test_NegativeMsFraction:PASS
+strtolfp.c:18:test_InvalidChars:PASS
+
+-----------------------
+7 Tests: 
+7 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-strtolfp (exit status: 0)
+==============================================
+   ntp 4.2.8p7: tests/libntp/test-suite.log
+==============================================
+
+# TOTAL: 39
+# PASS:  39
+# SKIP:  0
+# XFAIL: 0
+# FAIL:  0
+# XPASS: 0
+# ERROR: 0
+
+.. contents:: :depth: 2
+
+timespecops.c:37:test_Helpers1:PASS
+timespecops.c:38:test_Normalise:PASS
+timespecops.c:39:test_SignNoFrac:PASS
+timespecops.c:40:test_SignWithFrac:PASS
+timespecops.c:41:test_CmpFracEQ:PASS
+timespecops.c:42:test_CmpFracGT:PASS
+timespecops.c:43:test_CmpFracLT:PASS
+timespecops.c:44:test_AddFullNorm:PASS
+timespecops.c:45:test_AddFullOflow1:PASS
+timespecops.c:46:test_AddNsecNorm:PASS
+timespecops.c:47:test_AddNsecOflow1:PASS
+timespecops.c:48:test_SubFullNorm:PASS
+timespecops.c:49:test_SubFullOflow:PASS
+timespecops.c:50:test_SubNsecNorm:PASS
+timespecops.c:51:test_SubNsecOflow:PASS
+timespecops.c:52:test_Neg:PASS
+timespecops.c:53:test_AbsNoFrac:PASS
+timespecops.c:54:test_AbsWithFrac:PASS
+m_expr which is -2.1 
+and
+n_expr which is -2.18446744073709551613
+are not close; diff=0.4nsec
+m_expr which is -2.1 
+and
+n_expr which is -2.18446744073709551614
+are not close; diff=0.3nsec
+m_expr which is -2.1 
+and
+n_expr which is -2.4
+are not close; diff=0.3nsec
+m_expr which is -2.1 
+and
+n_expr which is -2.5
+are not close; diff=0.4nsec
+m_expr which is -2.500000000 
+and
+n_expr which is -2.499999996
+are not close; diff=0.4nsec
+m_expr which is -2.500000000 
+and
+n_expr which is -2.499999997
+are not close; diff=0.3nsec
+m_expr which is -2.500000000 
+and
+n_expr which is -2.500000003
+are not close; diff=0.3nsec
+m_expr which is -2.500000000 
+and
+n_expr which is -2.500000004
+are not close; diff=0.4nsec
+m_expr which is -2.999999999 
+and
+n_expr which is -2.999999995
+are not close; diff=0.4nsec
+m_expr which is -2.999999999 
+and
+n_expr which is -2.999999996
+are not close; diff=0.3nsec
+m_expr which is -2.999999999 
+and
+n_expr which is -2.1000000002
+are not close; diff=0.3nsec
+m_expr which is -2.999999999 
+and
+n_expr which is -2.1000000003
+are not close; diff=0.4nsec
+m_expr which is -1.1 
+and
+n_expr which is -1.18446744073709551613
+are not close; diff=0.4nsec
+m_expr which is -1.1 
+and
+n_expr which is -1.18446744073709551614
+are not close; diff=0.3nsec
+m_expr which is -1.1 
+and
+n_expr which is -1.4
+are not close; diff=0.3nsec
+m_expr which is -1.1 
+and
+n_expr which is -1.5
+are not close; diff=0.4nsec
+m_expr which is -1.500000000 
+and
+n_expr which is -1.499999996
+are not close; diff=0.4nsec
+m_expr which is -1.500000000 
+and
+n_expr which is -1.499999997
+are not close; diff=0.3nsec
+m_expr which is -1.500000000 
+and
+n_expr which is -1.500000003
+are not close; diff=0.3nsec
+m_expr which is -1.500000000 
+and
+n_expr which is -1.500000004
+are not close; diff=0.4nsec
+m_expr which is -1.999999999 
+and
+n_expr which is -1.999999995
+are not close; diff=0.4nsec
+m_expr which is -1.999999999 
+and
+n_expr which is -1.999999996
+are not close; diff=0.3nsec
+m_expr which is -1.999999999 
+and
+n_expr which is -1.1000000002
+are not close; diff=0.3nsec
+m_expr which is -1.999999999 
+and
+n_expr which is -1.1000000003
+are not close; diff=0.4nsec
+m_expr which is 0.1 
+and
+n_expr which is 0.18446744073709551613
+are not close; diff=0.4nsec
+m_expr which is 0.1 
+and
+n_expr which is 0.18446744073709551614
+are not close; diff=0.3nsec
+m_expr which is 0.1 
+and
+n_expr which is 0.4
+are not close; diff=0.3nsec
+m_expr which is 0.1 
+and
+n_expr which is 0.5
+are not close; diff=0.4nsec
+m_expr which is 0.500000000 
+and
+n_expr which is 0.499999996
+are not close; diff=0.4nsec
+m_expr which is 0.500000000 
+and
+n_expr which is 0.499999997
+are not close; diff=0.3nsec
+m_expr which is 0.500000000 
+and
+n_expr which is 0.500000003
+are not close; diff=0.3nsec
+m_expr which is 0.500000000 
+and
+n_expr which is 0.500000004
+are not close; diff=0.4nsec
+m_expr which is 0.999999999 
+and
+n_expr which is 0.999999995
+are not close; diff=0.4nsec
+m_expr which is 0.999999999 
+and
+n_expr which is 0.999999996
+are not close; diff=0.3nsec
+m_expr which is 0.999999999 
+and
+n_expr which is 0.1000000002
+are not close; diff=0.3nsec
+m_expr which is 0.999999999 
+and
+n_expr which is 0.1000000003
+are not close; diff=0.4nsec
+m_expr which is 1.1 
+and
+n_expr which is 1.18446744073709551613
+are not close; diff=0.4nsec
+m_expr which is 1.1 
+and
+n_expr which is 1.18446744073709551614
+are not close; diff=0.3nsec
+m_expr which is 1.1 
+and
+n_expr which is 1.4
+are not close; diff=0.3nsec
+m_expr which is 1.1 
+and
+n_expr which is 1.5
+are not close; diff=0.4nsec
+m_expr which is 1.500000000 
+and
+n_expr which is 1.499999996
+are not close; diff=0.4nsec
+m_expr which is 1.500000000 
+and
+n_expr which is 1.499999997
+are not close; diff=0.3nsec
+m_expr which is 1.500000000 
+and
+n_expr which is 1.500000003
+are not close; diff=0.3nsec
+m_expr which is 1.500000000 
+and
+n_expr which is 1.500000004
+are not close; diff=0.4nsec
+m_expr which is 1.999999999 
+and
+n_expr which is 1.999999995
+are not close; diff=0.4nsec
+m_expr which is 1.999999999 
+and
+n_expr which is 1.999999996
+are not close; diff=0.3nsec
+m_expr which is 1.999999999 
+and
+n_expr which is 1.1000000002
+are not close; diff=0.3nsec
+m_expr which is 1.999999999 
+and
+n_expr which is 1.1000000003
+are not close; diff=0.4nsec
+m_expr which is 2.1 
+and
+n_expr which is 2.18446744073709551613
+are not close; diff=0.4nsec
+m_expr which is 2.1 
+and
+n_expr which is 2.18446744073709551614
+are not close; diff=0.3nsec
+m_expr which is 2.1 
+and
+n_expr which is 2.4
+are not close; diff=0.3nsec
+m_expr which is 2.1 
+and
+n_expr which is 2.5
+are not close; diff=0.4nsec
+m_expr which is 2.500000000 
+and
+n_expr which is 2.499999996
+are not close; diff=0.4nsec
+m_expr which is 2.500000000 
+and
+n_expr which is 2.499999997
+are not close; diff=0.3nsec
+m_expr which is 2.500000000 
+and
+n_expr which is 2.500000003
+are not close; diff=0.3nsec
+m_expr which is 2.500000000 
+and
+n_expr which is 2.500000004
+are not close; diff=0.4nsec
+m_expr which is 2.999999999 
+and
+n_expr which is 2.999999995
+are not close; diff=0.4nsec
+m_expr which is 2.999999999 
+and
+n_expr which is 2.999999996
+are not close; diff=0.3nsec
+m_expr which is 2.999999999 
+and
+n_expr which is 2.1000000002
+are not close; diff=0.3nsec
+m_expr which is 2.999999999 
+and
+n_expr which is 2.1000000003
+are not close; diff=0.4nsec
+timespecops.c:55:test_Helpers2:PASS
+timespecops.c:56:test_ToLFPbittest:PASS
+timespecops.c:57:test_ToLFPrelPos:PASS
+timespecops.c:58:test_ToLFPrelNeg:PASS
+timespecops.c:59:test_ToLFPabs:PASS
+timespecops.c:60:test_FromLFPbittest:PASS
+timespecops.c:61:test_FromLFPrelPos:PASS
+timespecops.c:62:test_FromLFPrelNeg:PASS
+timespecops.c:63:test_LFProundtrip:PASS
+timespecops.c:64:test_ToString:PASS
+
+-----------------------
+28 Tests: 
+28 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-timespecops (exit status: 0)
+timevalops.c:37:test_Helpers1:PASS
+timevalops.c:38:test_Normalise:PASS
+timevalops.c:39:test_SignNoFrac:PASS
+timevalops.c:40:test_SignWithFrac:PASS
+timevalops.c:41:test_CmpFracEQ:PASS
+timevalops.c:42:test_CmpFracGT:PASS
+timevalops.c:43:test_CmpFracLT:PASS
+timevalops.c:44:test_AddFullNorm:PASS
+timevalops.c:45:test_AddFullOflow1:PASS
+timevalops.c:46:test_AddUsecNorm:PASS
+timevalops.c:47:test_AddUsecOflow1:PASS
+timevalops.c:48:test_SubFullNorm:PASS
+timevalops.c:49:test_SubFullOflow:PASS
+timevalops.c:50:test_SubUsecNorm:PASS
+timevalops.c:51:test_SubUsecOflow:PASS
+timevalops.c:52:test_Neg:PASS
+timevalops.c:53:test_AbsNoFrac:PASS
+timevalops.c:54:test_AbsWithFrac:PASS
+m_expr which is -2.1 
+and
+n_expr which is -2.18446744073709551613
+are not close; diff=0.4usec
+m_expr which is -2.1 
+and
+n_expr which is -2.18446744073709551614
+are not close; diff=0.3usec
+m_expr which is -2.1 
+and
+n_expr which is -2.4
+are not close; diff=0.3usec
+m_expr which is -2.1 
+and
+n_expr which is -2.5
+are not close; diff=0.4usec
+m_expr which is -2.500000 
+and
+n_expr which is -2.499996
+are not close; diff=0.4usec
+m_expr which is -2.500000 
+and
+n_expr which is -2.499997
+are not close; diff=0.3usec
+m_expr which is -2.500000 
+and
+n_expr which is -2.500003
+are not close; diff=0.3usec
+m_expr which is -2.500000 
+and
+n_expr which is -2.500004
+are not close; diff=0.4usec
+m_expr which is -2.999999 
+and
+n_expr which is -2.999995
+are not close; diff=0.4usec
+m_expr which is -2.999999 
+and
+n_expr which is -2.999996
+are not close; diff=0.3usec
+m_expr which is -2.999999 
+and
+n_expr which is -2.1000002
+are not close; diff=0.3usec
+m_expr which is -2.999999 
+and
+n_expr which is -2.1000003
+are not close; diff=0.4usec
+m_expr which is -1.1 
+and
+n_expr which is -1.18446744073709551613
+are not close; diff=0.4usec
+m_expr which is -1.1 
+and
+n_expr which is -1.18446744073709551614
+are not close; diff=0.3usec
+m_expr which is -1.1 
+and
+n_expr which is -1.4
+are not close; diff=0.3usec
+m_expr which is -1.1 
+and
+n_expr which is -1.5
+are not close; diff=0.4usec
+m_expr which is -1.500000 
+and
+n_expr which is -1.499996
+are not close; diff=0.4usec
+m_expr which is -1.500000 
+and
+n_expr which is -1.499997
+are not close; diff=0.3usec
+m_expr which is -1.500000 
+and
+n_expr which is -1.500003
+are not close; diff=0.3usec
+m_expr which is -1.500000 
+and
+n_expr which is -1.500004
+are not close; diff=0.4usec
+m_expr which is -1.999999 
+and
+n_expr which is -1.999995
+are not close; diff=0.4usec
+m_expr which is -1.999999 
+and
+n_expr which is -1.999996
+are not close; diff=0.3usec
+m_expr which is -1.999999 
+and
+n_expr which is -1.1000002
+are not close; diff=0.3usec
+m_expr which is -1.999999 
+and
+n_expr which is -1.1000003
+are not close; diff=0.4usec
+m_expr which is 0.1 
+and
+n_expr which is 0.18446744073709551613
+are not close; diff=0.4usec
+m_expr which is 0.1 
+and
+n_expr which is 0.18446744073709551614
+are not close; diff=0.3usec
+m_expr which is 0.1 
+and
+n_expr which is 0.4
+are not close; diff=0.3usec
+m_expr which is 0.1 
+and
+n_expr which is 0.5
+are not close; diff=0.4usec
+m_expr which is 0.500000 
+and
+n_expr which is 0.499996
+are not close; diff=0.4usec
+m_expr which is 0.500000 
+and
+n_expr which is 0.499997
+are not close; diff=0.3usec
+m_expr which is 0.500000 
+and
+n_expr which is 0.500003
+are not close; diff=0.3usec
+m_expr which is 0.500000 
+and
+n_expr which is 0.500004
+are not close; diff=0.4usec
+m_expr which is 0.999999 
+and
+n_expr which is 0.999995
+are not close; diff=0.4usec
+m_expr which is 0.999999 
+and
+n_expr which is 0.999996
+are not close; diff=0.3usec
+m_expr which is 0.999999 
+and
+n_expr which is 0.1000002
+are not close; diff=0.3usec
+m_expr which is 0.999999 
+and
+n_expr which is 0.1000003
+are not close; diff=0.4usec
+m_expr which is 1.1 
+and
+n_expr which is 1.18446744073709551613
+are not close; diff=0.4usec
+m_expr which is 1.1 
+and
+n_expr which is 1.18446744073709551614
+are not close; diff=0.3usec
+m_expr which is 1.1 
+and
+n_expr which is 1.4
+are not close; diff=0.3usec
+m_expr which is 1.1 
+and
+n_expr which is 1.5
+are not close; diff=0.4usec
+m_expr which is 1.500000 
+and
+n_expr which is 1.499996
+are not close; diff=0.4usec
+m_expr which is 1.500000 
+and
+n_expr which is 1.499997
+are not close; diff=0.3usec
+m_expr which is 1.500000 
+and
+n_expr which is 1.500003
+are not close; diff=0.3usec
+m_expr which is 1.500000 
+and
+n_expr which is 1.500004
+are not close; diff=0.4usec
+m_expr which is 1.999999 
+and
+n_expr which is 1.999995
+are not close; diff=0.4usec
+m_expr which is 1.999999 
+and
+n_expr which is 1.999996
+are not close; diff=0.3usec
+m_expr which is 1.999999 
+and
+n_expr which is 1.1000002
+are not close; diff=0.3usec
+m_expr which is 1.999999 
+and
+n_expr which is 1.1000003
+are not close; diff=0.4usec
+m_expr which is 2.1 
+and
+n_expr which is 2.18446744073709551613
+are not close; diff=0.4usec
+m_expr which is 2.1 
+and
+n_expr which is 2.18446744073709551614
+are not close; diff=0.3usec
+m_expr which is 2.1 
+and
+n_expr which is 2.4
+are not close; diff=0.3usec
+m_expr which is 2.1 
+and
+n_expr which is 2.5
+are not close; diff=0.4usec
+m_expr which is 2.500000 
+and
+n_expr which is 2.499996
+are not close; diff=0.4usec
+m_expr which is 2.500000 
+and
+n_expr which is 2.499997
+are not close; diff=0.3usec
+m_expr which is 2.500000 
+and
+n_expr which is 2.500003
+are not close; diff=0.3usec
+m_expr which is 2.500000 
+and
+n_expr which is 2.500004
+are not close; diff=0.4usec
+m_expr which is 2.999999 
+and
+n_expr which is 2.999995
+are not close; diff=0.4usec
+m_expr which is 2.999999 
+and
+n_expr which is 2.999996
+are not close; diff=0.3usec
+m_expr which is 2.999999 
+and
+n_expr which is 2.1000002
+are not close; diff=0.3usec
+m_expr which is 2.999999 
+and
+n_expr which is 2.1000003
+are not close; diff=0.4usec
+timevalops.c:55:test_Helpers2:PASS
+timevalops.c:56:test_ToLFPbittest:PASS
+timevalops.c:57:test_ToLFPrelPos:PASS
+timevalops.c:58:test_ToLFPrelNeg:PASS
+timevalops.c:59:test_ToLFPabs:PASS
+timevalops.c:60:test_FromLFPbittest:PASS
+timevalops.c:61:test_FromLFPrelPos:PASS
+timevalops.c:62:test_FromLFPrelNeg:PASS
+timevalops.c:63:test_LFProundtrip:PASS
+timevalops.c:64:test_ToString:PASS
+
+-----------------------
+28 Tests: 
+28 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-timevalops (exit status: 0)
+tsafememcmp.c:10:test_Empty:PASS
+tsafememcmp.c:11:test_Equal:PASS
+tsafememcmp.c:12:test_FirstByte:PASS
+tsafememcmp.c:13:test_LastByte:PASS
+tsafememcmp.c:14:test_MiddleByte:PASS
+tsafememcmp.c:15:test_MiddleByteUpLo:PASS
+
+-----------------------
+6 Tests: 
+6 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-tsafememcmp (exit status: 0)
+tstotv.c:8:test_Seconds:PASS
+tstotv.c:9:test_MicrosecondsExact:PASS
+tstotv.c:10:test_MicrosecondsRounding:PASS
+
+-----------------------
+3 Tests: 
+3 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-tstotv (exit status: 0)
+tvtots.c:10:test_Seconds:PASS
+tvtots.c:11:test_MicrosecondsRounded:PASS
+tvtots.c:12:test_MicrosecondsExact:PASS
+
+-----------------------
+3 Tests: 
+3 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-tvtots (exit status: 0)
+uglydate.c:9:test_ConstantDateTime:PASS
+
+-----------------------
+1 Tests: 
+1 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-uglydate (exit status: 0)
+0.4d2 but was 0.4d2
+vi64ops.c:10:test_ParseVUI64_pos:PASS
+ffffffff.fffffb2e but was ffffffff.fffffb2e
+vi64ops.c:11:test_ParseVUI64_neg:PASS
+1234567.89abcdef but was 1234567.89abcdef
+vi64ops.c:12:test_ParseVUI64_case:PASS
+
+-----------------------
+3 Tests: 
+3 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-vi64ops (exit status: 0)
+ymd2yd.c:7:test_NonLeapYearFebruary:PASS
+ymd2yd.c:8:test_NonLeapYearJune:PASS
+ymd2yd.c:9:test_LeapYearFebruary:PASS
+ymd2yd.c:10:test_LeapYearDecember:PASS
+
+-----------------------
+4 Tests: 
+4 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-ymd2yd (exit status: 0)
+leapsec.c:351:test_ValidateGood:PASS
+leapsec.c:362:test_ValidateNoHash:PASS
+leapsec.c:373:test_ValidateBad:PASS
+leapsec.c:385:test_ValidateMalformed:PASS
+leapsec.c:397:test_ValidateMalformedShort:PASS
+leapsec.c:409:test_ValidateNoLeadZero:PASS
+leapsec.c:426:test_tableSelect:PASS
+leapsec.c:466:test_loadFileExpire:PASS
+leapsec.c:487:test_loadFileTTL:PASS
+leapsec.c:522:test_lsQueryPristineState:PASS
+leapsec.c:538:test_ls2009faraway:PASS
+leapsec.c:559:test_ls2009weekaway:PASS
+leapsec.c:580:test_ls2009houraway:PASS
+leapsec.c:601:test_ls2009secaway:PASS
+leapsec.c:622:test_ls2009onspot:PASS
+leapsec.c:643:test_ls2009nodata:PASS
+leapsec.c:664:test_ls2009limdata:PASS
+leapsec.c:689:test_qryJumpFarAhead:PASS
+leapsec.c:712:test_qryJumpAheadToTransition:PASS
+leapsec.c:737:test_qryJumpAheadOverTransition:PASS
+leapsec.c:767:test_addDynamic:PASS
+leapsec.c:961:test_taiEmptyTable:PASS
+leapsec.c:974:test_taiTableFixed:PASS
+leapsec.c:990:test_taiTableDynamic:PASS
+leapsec.c:1020:test_taiTableDynamicDeadZone:PASS
+leapsec.c:1044:test_ls2009seqInsElectric:PASS
+leapsec.c:1091:test_ls2009seqInsDumb:PASS
+leapsec.c:1143:test_ls2009seqDelElectric:PASS
+leapsec.c:1190:test_ls2009seqDelDumb:PASS
+leapsec.c:1236:test_ls2012seqInsElectric:PASS
+leapsec.c:1283:test_ls2012seqInsDumb:PASS
+leapsec.c:1336:test_lsEmptyTableDumb:PASS
+leapsec.c:1365:test_lsEmptyTableElectric:PASS
+
+-----------------------
+33 Tests: 
+33 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-leapsec (exit status: 0)
+ntp_prio_q.c:39:test_AllocateDeallocateNode:PASS
+ntp_prio_q.c:46:test_EmptyQueue:PASS
+ntp_prio_q.c:60:test_OneElementQueue:PASS
+ntp_prio_q.c:88:test_MultipleElementQueue:PASS
+ntp_prio_q.c:126:test_CustomOrderQueue:PASS
+ntp_prio_q.c:183:test_DestroyNonEmptyQueue:PASS
+ntp_prio_q.c:205:test_AppendQueues:PASS
+
+-----------------------
+7 Tests: 
+7 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-ntp_prio_q (exit status: 0)
+ntp_restrict.c:66:test_RestrictionsAreEmptyAfterInit:PASS
+ntp_restrict.c:92:test_ReturnsCorrectDefaultRestrictions:PASS
+ntp_restrict.c:103:test_HackingDefaultRestriction:PASS
+ntp_restrict.c:126:test_CantRemoveDefaultEntry:PASS
+ntp_restrict.c:137:test_AddingNewRestriction:PASS
+ntp_restrict.c:150:test_TheMostFittingRestrictionIsMatched:PASS
+ntp_restrict.c:172:test_DeletedRestrictionIsNotMatched:PASS
+ntp_restrict.c:196:test_RestrictUnflagWorks:PASS
+
+-----------------------
+8 Tests: 
+8 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-ntp_restrict (exit status: 0)
+rc_cmdlength.c:16:test_EvaluateCommandLength:PASS
+
+-----------------------
+1 Tests: 
+1 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-rc_cmdlength (exit status: 0)
+============================================
+   ntp 4.2.8p7: tests/ntpd/test-suite.log
+============================================
+
+# TOTAL: 4
+# PASS:  4
+# SKIP:  0
+# XFAIL: 0
+# FAIL:  0
+# XPASS: 0
+# ERROR: 0
+
+.. contents:: :depth: 2
+
+t-ntpq.c:20:testPrimary:PASS
+
+-----------------------
+1 Tests: 
+1 PASS 
+0 XFAIL 
+0 Failures 
+0 XPASS 
+0 Ignored 
+
+OK
+PASS test-ntpq (exit status: 0)
+============================================
+   ntp 4.2.8p7: tests/ntpq/test-suite.log
+============================================
+
+# TOTAL: 1
+# PASS:  1
+# SKIP:  0
+# XFAIL: 0
+# FAIL:  0
+# XPASS: 0
+# ERROR: 0
+
+.. contents:: :depth: 2
+
+===============================================
+   ntp 4.2.8p7: tests/sandbox/test-suite.log
+===============================================
+
+# TOTAL: 2
+# PASS:  2
+# SKIP:  0
+# XFAIL: 0
+# FAIL:  0
+# XPASS: 0
+# ERROR: 0
+
+.. contents:: :depth: 2
+
+================================================
+   ntp 4.2.8p7: tests/sec-2853/test-suite.log
+================================================
+
+# TOTAL: 1
+# PASS:  1
+# SKIP:  0
+# XFAIL: 0
+# FAIL:  0
+# XPASS: 0
+# ERROR: 0
+
+.. contents:: :depth: 2
+
+/* config.h.  Generated from config.h.in by configure.  */
+/* config.h.in.  Generated from configure.ac by autoheader.  */
+
+/* Define if building universal (internal helper macro) */
+/* #undef AC_APPLE_UNIVERSAL_BUILD */
+
+/* Is adjtime() accurate? */
+#define ADJTIME_IS_ACCURATE 1
+
+/* Support NTP Autokey protocol? */
+#define AUTOKEY 1
+
+/* why not HAVE_P_S? */
+#define CALL_PTHREAD_SETCONCURRENCY 1
+
+/* ACTS modem service */
+#define CLOCK_ACTS 1
+
+/* Arbiter 1088A/B GPS receiver */
+#define CLOCK_ARBITER 1
+
+/* ARCRON support? */
+#define CLOCK_ARCRON_MSF 1
+
+/* Austron 2200A/2201A GPS receiver? */
+#define CLOCK_AS2201 1
+
+/* PPS interface? */
+#define CLOCK_ATOM 1
+
+/* Datum/Bancomm bc635/VME interface? */
+/* #undef CLOCK_BANC */
+
+/* Chronolog K-series WWVB receiver? */
+#define CLOCK_CHRONOLOG 1
+
+/* CHU modem/decoder */
+#define CLOCK_CHU 1
+
+/* Diems Computime Radio Clock? */
+#define CLOCK_COMPUTIME 1
+
+/* Datum Programmable Time System? */
+#define CLOCK_DATUM 1
+
+/* ELV/DCF7000 clock? */
+#define CLOCK_DCF7000 1
+
+/* Dumb generic hh:mm:ss local clock? */
+#define CLOCK_DUMBCLOCK 1
+
+/* Forum Graphic GPS datating station driver? */
+#define CLOCK_FG 1
+
+/* GPSD JSON receiver */
+#define CLOCK_GPSDJSON 1
+
+/* TrueTime GPS receiver/VME interface? */
+/* #undef CLOCK_GPSVME */
+
+/* Heath GC-1000 WWV/WWVH receiver? */
+#define CLOCK_HEATH 1
+
+/* HOPF 6021 clock? */
+#define CLOCK_HOPF6021 1
+
+/* HOPF PCI clock device? */
+#define CLOCK_HOPF_PCI 1
+
+/* HOPF serial clock device? */
+#define CLOCK_HOPF_SERIAL 1
+
+/* HP 58503A GPS receiver? */
+#define CLOCK_HPGPS 1
+
+/* IRIG audio decoder? */
+#define CLOCK_IRIG 1
+
+/* JJY receiver? */
+#define CLOCK_JJY 1
+
+/* Rockwell Jupiter GPS clock? */
+#define CLOCK_JUPITER 1
+
+/* Leitch CSD 5300 Master Clock System Driver? */
+#define CLOCK_LEITCH 1
+
+/* local clock reference? */
+#define CLOCK_LOCAL 1
+
+/* Meinberg clocks */
+#define CLOCK_MEINBERG 1
+
+/* Magnavox MX4200 GPS receiver */
+/* #undef CLOCK_MX4200 */
+
+/* NeoClock4X */
+#define CLOCK_NEOCLOCK4X 1
+
+/* NMEA GPS receiver */
+#define CLOCK_NMEA 1
+
+/* Motorola UT Oncore GPS */
+#define CLOCK_ONCORE 1
+
+/* Palisade clock */
+#define CLOCK_PALISADE 1
+
+/* PARSE driver interface */
+#define CLOCK_PARSE 1
+
+/* Conrad parallel port radio clock */
+#define CLOCK_PCF 1
+
+/* PCL 720 clock support */
+/* #undef CLOCK_PPS720 */
+
+/* PST/Traconex 1020 WWV/WWVH receiver */
+#define CLOCK_PST 1
+
+/* DCF77 raw time code */
+#define CLOCK_RAWDCF 1
+
+/* RCC 8000 clock */
+#define CLOCK_RCC8000 1
+
+/* RIPE NCC Trimble clock */
+/* #undef CLOCK_RIPENCC */
+
+/* Schmid DCF77 clock */
+#define CLOCK_SCHMID 1
+
+/* SEL240X protocol */
+#define CLOCK_SEL240X 1
+
+/* clock thru shared memory */
+#define CLOCK_SHM 1
+
+/* Spectracom 8170/Netclock/2 WWVB receiver */
+#define CLOCK_SPECTRACOM 1
+
+/* KSI/Odetics TPRO/S GPS receiver/IRIG interface */
+/* #undef CLOCK_TPRO */
+
+/* Trimble GPS receiver/TAIP protocol */
+#define CLOCK_TRIMTAIP 1
+
+/* Trimble GPS receiver/TSIP protocol */
+#define CLOCK_TRIMTSIP 1
+
+/* Kinemetrics/TrueTime receivers */
+#define CLOCK_TRUETIME 1
+
+/* Spectracom TSYNC timing board */
+/* #undef CLOCK_TSYNCPCI */
+
+/* TrueTime 560 IRIG-B decoder? */
+/* #undef CLOCK_TT560 */
+
+/* Ultralink M320 WWVB receiver? */
+#define CLOCK_ULINK 1
+
+/* VARITEXT clock */
+#define CLOCK_VARITEXT 1
+
+/* WHARTON 400A Series clock */
+#define CLOCK_WHARTON_400A 1
+
+/* WWV audio driver */
+#define CLOCK_WWV 1
+
+/* Zyfer GPStarplus */
+#define CLOCK_ZYFER 1
+
+/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
+   systems. This function is required for `alloca.c' support on those systems.
+   */
+/* #undef CRAY_STACKSEG_END */
+
+/* Define to 1 if using `alloca.c'. */
+/* #undef C_ALLOCA */
+
+/* Enable debugging code? */
+#define DEBUG 1
+
+/* Enable processing time debugging? */
+#define DEBUG_TIMING 1
+
+/* Declaration style */
+/* #undef DECL_ADJTIME_0 */
+
+/* Declaration style */
+/* #undef DECL_BCOPY_0 */
+
+/* Declaration style */
+/* #undef DECL_BZERO_0 */
+
+/* Declaration style */
+/* #undef DECL_CFSETISPEED_0 */
+
+/* Declare errno? */
+/* #undef DECL_ERRNO */
+
+/* Declaration style */
+/* #undef DECL_HSTRERROR_0 */
+
+/* Declare h_errno? */
+#define DECL_H_ERRNO 1
+
+/* Declaration style */
+/* #undef DECL_INET_NTOA_0 */
+
+/* Declaration style */
+/* #undef DECL_IOCTL_0 */
+
+/* Declaration style */
+/* #undef DECL_IPC_0 */
+
+/* Declaration style */
+/* #undef DECL_MEMMOVE_0 */
+
+/* Declaration style */
+#define DECL_MKSTEMP_0 1
+
+/* Declaration style */
+/* #undef DECL_MKTEMP_0 */
+
+/* Declaration style */
+/* #undef DECL_NLIST_0 */
+
+/* Declaration style */
+/* #undef DECL_PLOCK_0 */
+
+/* Declaration style */
+/* #undef DECL_RENAME_0 */
+
+/* Declaration style */
+/* #undef DECL_SELECT_0 */
+
+/* Declaration style */
+/* #undef DECL_SETITIMER_0 */
+
+/* Declaration style */
+/* #undef DECL_SETPRIORITY_0 */
+
+/* Declaration style */
+#define DECL_SETPRIORITY_1 1
+
+/* Declaration style */
+/* #undef DECL_SIGVEC_0 */
+
+/* Declaration style */
+/* #undef DECL_STDIO_0 */
+
+/* Declaration style */
+/* #undef DECL_STIME_0 */
+
+/* Declaration style */
+/* #undef DECL_STIME_1 */
+
+/* Declaration style */
+/* #undef DECL_STRERROR_0 */
+
+/* Declaration style */
+/* #undef DECL_STRTOL_0 */
+
+/* Declare syscall()? */
+/* #undef DECL_SYSCALL */
+
+/* Declaration style */
+/* #undef DECL_SYSLOG_0 */
+
+/* Declaration style */
+/* #undef DECL_TIMEOFDAY_0 */
+
+/* Declaration style */
+/* #undef DECL_TIME_0 */
+
+/* Declaration style */
+/* #undef DECL_TOLOWER_0 */
+
+/* Declaration style */
+/* #undef DECL_TOUPPER_0 */
+
+/* What is the fallback value for HZ? */
+#define DEFAULT_HZ 100
+
+/* Default number of megabytes for RLIMIT_MEMLOCK */
+#define DFLT_RLIMIT_MEMLOCK 32
+
+/* Default number of 4k pages for RLIMIT_STACK */
+#define DFLT_RLIMIT_STACK 50
+
+/* Directory separator character, usually / or \\ */
+#define DIR_SEP '/'
+
+/* use old autokey session key behavior? */
+/* #undef DISABLE_BUG1243_FIX */
+
+/* synch TODR hourly? */
+/* #undef DOSYNCTODR */
+
+/* The number of minutes in a DST adjustment */
+#define DSTMINUTES 60
+
+/* support dynamic interleave? */
+#define DYNAMIC_INTERLEAVE 0
+
+/* number of args to el_init() */
+#define EL_INIT_ARGS 4
+
+/* Provide the explicit 127.0.0.0/8 martian filter? */
+#define ENABLE_BUG3020_FIX 1
+
+/* nls support in libopts */
+/* #undef ENABLE_NLS */
+
+/* force ntpdate to step the clock if !defined(STEP_SLEW) ? */
+/* #undef FORCE_NTPDATE_STEP */
+
+/* What is getsockname()'s socklen type? */
+#define GETSOCKNAME_SOCKLEN_TYPE socklen_t
+
+/* Do we have a routing socket (rt_msghdr or rtattr)? */
+#define HAS_ROUTING_SOCKET 1
+
+/* via __adjtimex */
+/* #undef HAVE_ADJTIMEX */
+
+/* Define to 1 if you have `alloca', as a function or macro. */
+#define HAVE_ALLOCA 1
+
+/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
+   */
+#define HAVE_ALLOCA_H 1
+
+/* Define to 1 if you have the `arc4random_buf' function. */
+#define HAVE_ARC4RANDOM_BUF 1
+
+/* Define to 1 if you have the <arpa/nameser.h> header file. */
+#define HAVE_ARPA_NAMESER_H 1
+
+/* Define to 1 if you have the `atomic_thread_fence' function. */
+/* #undef HAVE_ATOMIC_THREAD_FENCE */
+
+/* Do we have audio support? */
+#define HAVE_AUDIO /**/
+
+/* Define to 1 if you have the <bstring.h> header file. */
+/* #undef HAVE_BSTRING_H */
+
+/* Define to 1 if you have the `canonicalize_file_name' function. */
+#define HAVE_CANONICALIZE_FILE_NAME 1
+
+/* Define to 1 if you have the `chmod' function. */
+#define HAVE_CHMOD 1
+
+/* Do we have the CIOGETEV ioctl (SunOS, Linux)? */
+/* #undef HAVE_CIOGETEV */
+
+/* Define to 1 if you have the `clock_getres' function. */
+#define HAVE_CLOCK_GETRES 1
+
+/* Define to 1 if you have the `clock_gettime' function. */
+#define HAVE_CLOCK_GETTIME 1
+
+/* Define to 1 if you have the `clock_settime' function. */
+#define HAVE_CLOCK_SETTIME 1
+
+/* Define to 1 if you have the <cthreads.h> header file. */
+/* #undef HAVE_CTHREADS_H */
+
+/* Define to 1 if you have the `daemon' function. */
+#define HAVE_DAEMON 1
+
+/* Define to 1 if you have the declaration of `strerror_r', and to 0 if you
+   don't. */
+#define HAVE_DECL_STRERROR_R 1
+
+/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
+   */
+#define HAVE_DIRENT_H 1
+
+/* Define to 1 if you have the <dlfcn.h> header file. */
+#define HAVE_DLFCN_H 1
+
+/* Use Rendezvous/DNS-SD registration */
+#define HAVE_DNSREGISTRATION 1
+
+/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
+#define HAVE_DOPRNT 1
+
+/* Can we drop root privileges? */
+#define HAVE_DROPROOT 1
+
+/* Define to 1 if you have the <errno.h> header file. */
+#define HAVE_ERRNO_H 1
+
+/* Define to 1 if you have the `EVP_MD_do_all_sorted' function. */
+#define HAVE_EVP_MD_DO_ALL_SORTED 1
+
+/* Define to 1 if you have the `fchmod' function. */
+#define HAVE_FCHMOD 1
+
+/* Define to 1 if you have the <fcntl.h> header file. */
+#define HAVE_FCNTL_H 1
+
+/* Define to 1 if you have the `finite' function. */
+#define HAVE_FINITE 1
+
+/* Define to 1 if you have the `fnmatch' function. */
+#define HAVE_FNMATCH 1
+
+/* Define to 1 if you have the <fnmatch.h> header file. */
+#define HAVE_FNMATCH_H 1
+
+/* Define to 1 if you have the `fork' function. */
+#define HAVE_FORK 1
+
+/* Define to 1 if you have the `fstat' function. */
+#define HAVE_FSTAT 1
+
+/* Define to 1 if you have the `getbootfile' function. */
+/* #undef HAVE_GETBOOTFILE */
+
+/* Define to 1 if you have the `getclock' function. */
+/* #undef HAVE_GETCLOCK */
+
+/* Define to 1 if you have the `getdtablesize' function. */
+#define HAVE_GETDTABLESIZE 1
+
+/* Define to 1 if you have the `getifaddrs' function. */
+#define HAVE_GETIFADDRS 1
+
+/* Define to 1 if you have the `getpassphrase' function. */
+#define HAVE_GETPASSPHRASE 1
+
+/* Define to 1 if you have the `getrusage' function. */
+#define HAVE_GETRUSAGE 1
+
+/* Define to 1 if you have the `getuid' function. */
+#define HAVE_GETUID 1
+
+/* if you have GNU Pth */
+/* #undef HAVE_GNU_PTH */
+
+/* Define to 1 if you have the <histedit.h> header file. */
+#define HAVE_HISTEDIT_H 1
+
+/* Define to 1 if you have the <history.h> header file. */
+/* #undef HAVE_HISTORY_H */
+
+/* Obvious */
+/* #undef HAVE_HZ_IN_STRUCT_CLOCKINFO */
+
+/* Define to 1 if you have the <ieeefp.h> header file. */
+#define HAVE_IEEEFP_H 1
+
+/* have iflist_sysctl? */
+/* #undef HAVE_IFLIST_SYSCTL */
+
+/* Define to 1 if you have the `if_nametoindex' function. */
+#define HAVE_IF_NAMETOINDEX 1
+
+/* inline keyword or macro available */
+#define HAVE_INLINE 1
+
+/* Define to 1 if the system has the type `int16_t'. */
+#define HAVE_INT16_T 1
+
+/* Define to 1 if the system has the type `int32'. */
+/* #undef HAVE_INT32 */
+
+/* int32 type in DNS headers, not others. */
+/* #undef HAVE_INT32_ONLY_WITH_DNS */
+
+/* Define to 1 if the system has the type `int32_t'. */
+#define HAVE_INT32_T 1
+
+/* Define to 1 if the system has the type `int8_t'. */
+#define HAVE_INT8_T 1
+
+/* Define to 1 if the system has the type `intmax_t'. */
+/* #undef HAVE_INTMAX_T */
+
+/* Define to 1 if the system has the type `intptr_t'. */
+#define HAVE_INTPTR_T 1
+
+/* Define to 1 if you have the <inttypes.h> header file. */
+#define HAVE_INTTYPES_H 1
+
+/* Define to 1 if you have the `isfinite' function. */
+/* #undef HAVE_ISFINITE */
+
+/* Define to 1 if you have the <kvm.h> header file. */
+#define HAVE_KVM_H 1
+
+/* Define to 1 if you have the `kvm_open' function. */
+/* #undef HAVE_KVM_OPEN */
+
+/* Define to 1 if you have the `gen' library (-lgen). */
+#define HAVE_LIBGEN 1
+
+/* Define to 1 if you have the <libgen.h> header file. */
+#define HAVE_LIBGEN_H 1
+
+/* Define to 1 if you have the `intl' library (-lintl). */
+#define HAVE_LIBINTL 1
+
+/* Define to 1 if you have the <libintl.h> header file. */
+#define HAVE_LIBINTL_H 1
+
+/* Define to 1 if you have the <libscf.h> header file. */
+#define HAVE_LIBSCF_H 1
+
+/* Define to 1 if you have the <limits.h> header file. */
+#define HAVE_LIMITS_H 1
+
+/* using Linux pthread? */
+/* #undef HAVE_LINUXTHREADS */
+
+/* Do we have Linux capabilities? */
+/* #undef HAVE_LINUX_CAPABILITIES */
+
+/* Define to 1 if you have the <linux/if_addr.h> header file. */
+/* #undef HAVE_LINUX_IF_ADDR_H */
+
+/* if you have LinuxThreads */
+/* #undef HAVE_LINUX_THREADS */
+
+/* Define to 1 if you have the `localeconv' function. */
+/* #undef HAVE_LOCALECONV */
+
+/* Define to 1 if you have the <locale.h> header file. */
+/* #undef HAVE_LOCALE_H */
+
+/* Define to 1 if the system has the type `long double'. */
+/* #undef HAVE_LONG_DOUBLE */
+
+/* Define to 1 if the system has the type `long long'. */
+#define HAVE_LONG_LONG 1
+
+/* Define to 1 if the system has the type `long long int'. */
+/* #undef HAVE_LONG_LONG_INT */
+
+/* if you have SunOS LWP package */
+/* #undef HAVE_LWP */
+
+/* Define to 1 if you have the <lwp/lwp.h> header file. */
+/* #undef HAVE_LWP_LWP_H */
+
+/* Define to 1 if you have the <machine/inline.h> header file. */
+/* #undef HAVE_MACHINE_INLINE_H */
+
+/* Define to 1 if you have the <machine/soundcard.h> header file. */
+/* #undef HAVE_MACHINE_SOUNDCARD_H */
+
+/* define if you have Mach Cthreads */
+/* #undef HAVE_MACH_CTHREADS */
+
+/* Define to 1 if you have the <mach/cthreads.h> header file. */
+/* #undef HAVE_MACH_CTHREADS_H */
+
+/* Define to 1 if you have the <math.h> header file. */
+#define HAVE_MATH_H 1
+
+/* Define to 1 if you have the `MD5Init' function. */
+#define HAVE_MD5INIT 1
+
+/* Define to 1 if you have the <md5.h> header file. */
+#define HAVE_MD5_H 1
+
+/* Define to 1 if you have the `memlk' function. */
+/* #undef HAVE_MEMLK */
+
+/* Define to 1 if you have the <memory.h> header file. */
+#define HAVE_MEMORY_H 1
+
+/* Define to 1 if you have the `mkstemp' function. */
+#define HAVE_MKSTEMP 1
+
+/* Define to 1 if you have the `mktime' function. */
+#define HAVE_MKTIME 1
+
+/* Define to 1 if you have the `mlockall' function. */
+#define HAVE_MLOCKALL 1
+
+/* Define to 1 if you have the `mmap' function. */
+#define HAVE_MMAP 1
+
+/* Define to 1 if you have the `nanosleep' function. */
+#define HAVE_NANOSLEEP 1
+
+/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
+/* #undef HAVE_NDIR_H */
+
+/* Define to 1 if you have the <netdb.h> header file. */
+#define HAVE_NETDB_H 1
+
+/* Define to 1 if you have the <netinet/in.h> header file. */
+#define HAVE_NETINET_IN_H 1
+
+/* Define to 1 if you have the <netinet/in_system.h> header file. */
+/* #undef HAVE_NETINET_IN_SYSTEM_H */
+
+/* Define to 1 if you have the <netinet/in_systm.h> header file. */
+#define HAVE_NETINET_IN_SYSTM_H 1
+
+/* Define to 1 if you have the <netinet/in_var.h> header file. */
+#define HAVE_NETINET_IN_VAR_H 1
+
+/* Define to 1 if you have the <netinet/ip.h> header file. */
+#define HAVE_NETINET_IP_H 1
+
+/* NetInfo support? */
+/* #undef HAVE_NETINFO */
+
+/* Define to 1 if you have the <netinfo/ni.h> header file. */
+/* #undef HAVE_NETINFO_NI_H */
+
+/* Define to 1 if you have the <net/if6.h> header file. */
+/* #undef HAVE_NET_IF6_H */
+
+/* Define to 1 if you have the <net/if.h> header file. */
+#define HAVE_NET_IF_H 1
+
+/* Define to 1 if you have the <net/if_var.h> header file. */
+/* #undef HAVE_NET_IF_VAR_H */
+
+/* Define to 1 if you have the <net/route.h> header file. */
+#define HAVE_NET_ROUTE_H 1
+
+/* Define to 1 if you have the `nice' function. */
+#define HAVE_NICE 1
+
+/* Define to 1 if you have the <nlist.h> header file. */
+#define HAVE_NLIST_H 1
+
+/* via __adjtimex */
+#define HAVE_NTP_ADJTIME 1
+
+/* via __ntp_gettime */
+#define HAVE_NTP_GETTIME 1
+
+/* Do we want support for Samba's signing daemon? */
+/* #undef HAVE_NTP_SIGND */
+
+/* if you have NT Event Log */
+/* #undef HAVE_NT_EVENT_LOG */
+
+/* if you have NT Service Manager */
+/* #undef HAVE_NT_SERVICE_MANAGER */
+
+/* if you have NT Threads */
+/* #undef HAVE_NT_THREADS */
+
+/* Define to 1 if the system has the type `pid_t'. */
+#define HAVE_PID_T 1
+
+/* Define to 1 if you have the `plock' function. */
+#define HAVE_PLOCK 1
+
+/* Define to 1 if you have the <poll.h> header file. */
+#define HAVE_POLL_H 1
+
+/* Do we have the PPS API per the Draft RFC? */
+#define HAVE_PPSAPI 1
+
+/* Define to 1 if you have the <priv.h> header file. */
+#define HAVE_PRIV_H 1
+
+/* Define if you have POSIX threads libraries and header files. */
+/* #undef HAVE_PTHREAD */
+
+/* define to pthreads API spec revision */
+#define HAVE_PTHREADS 10
+
+/* Define to 1 if you have the `pthread_attr_getstacksize' function. */
+#define HAVE_PTHREAD_ATTR_GETSTACKSIZE 1
+
+/* Define to 1 if you have the `pthread_attr_setstacksize' function. */
+#define HAVE_PTHREAD_ATTR_SETSTACKSIZE 1
+
+/* define if you have pthread_detach function */
+#define HAVE_PTHREAD_DETACH 1
+
+/* Define to 1 if you have the `pthread_getconcurrency' function. */
+#define HAVE_PTHREAD_GETCONCURRENCY 1
+
+/* Define to 1 if you have the <pthread.h> header file. */
+#define HAVE_PTHREAD_H 1
+
+/* Define to 1 if you have the `pthread_kill' function. */
+#define HAVE_PTHREAD_KILL 1
+
+/* Define to 1 if you have the `pthread_kill_other_threads_np' function. */
+/* #undef HAVE_PTHREAD_KILL_OTHER_THREADS_NP */
+
+/* define if you have pthread_rwlock_destroy function */
+#define HAVE_PTHREAD_RWLOCK_DESTROY 1
+
+/* Define to 1 if you have the `pthread_setconcurrency' function. */
+#define HAVE_PTHREAD_SETCONCURRENCY 1
+
+/* Define to 1 if you have the `pthread_yield' function. */
+/* #undef HAVE_PTHREAD_YIELD */
+
+/* Define to 1 if you have the <pth.h> header file. */
+/* #undef HAVE_PTH_H */
+
+/* Define to 1 if the system has the type `ptrdiff_t'. */
+#define HAVE_PTRDIFF_T 1
+
+/* Define to 1 if you have the `pututline' function. */
+#define HAVE_PUTUTLINE 1
+
+/* Define to 1 if you have the `pututxline' function. */
+#define HAVE_PUTUTXLINE 1
+
+/* Define to 1 if you have the `RAND_bytes' function. */
+#define HAVE_RAND_BYTES 1
+
+/* Define to 1 if you have the `RAND_poll' function. */
+#define HAVE_RAND_POLL 1
+
+/* Define to 1 if you have the <readline.h> header file. */
+/* #undef HAVE_READLINE_H */
+
+/* Define if your readline library has \`add_history' */
+#define HAVE_READLINE_HISTORY 1
+
+/* Define to 1 if you have the <readline/history.h> header file. */
+#define HAVE_READLINE_HISTORY_H 1
+
+/* Define to 1 if you have the <readline/readline.h> header file. */
+#define HAVE_READLINE_READLINE_H 1
+
+/* Define to 1 if you have the `readlink' function. */
+#define HAVE_READLINK 1
+
+/* Define to 1 if you have the `recvmsg' function. */
+#define HAVE_RECVMSG 1
+
+/* Define to 1 if you have the <resolv.h> header file. */
+#define HAVE_RESOLV_H 1
+
+/* Define to 1 if you have the `res_init' function. */
+#define HAVE_RES_INIT 1
+
+/* Do we have Linux routing socket? */
+/* #undef HAVE_RTNETLINK */
+
+/* Define to 1 if you have the `rtprio' function. */
+/* #undef HAVE_RTPRIO */
+
+/* Define to 1 if you have the <runetype.h> header file. */
+/* #undef HAVE_RUNETYPE_H */
+
+/* Obvious */
+#define HAVE_SA_SIGACTION_IN_STRUCT_SIGACTION 1
+
+/* Define to 1 if you have the <sched.h> header file. */
+#define HAVE_SCHED_H 1
+
+/* Define to 1 if you have the `sched_setscheduler' function. */
+#define HAVE_SCHED_SETSCHEDULER 1
+
+/* Define to 1 if you have the `sched_yield' function. */
+#define HAVE_SCHED_YIELD 1
+
+/* Define to 1 if you have the <semaphore.h> header file. */
+#define HAVE_SEMAPHORE_H 1
+
+/* Define to 1 if you have the `sem_timedwait' function. */
+#define HAVE_SEM_TIMEDWAIT 1
+
+/* Define to 1 if you have the <setjmp.h> header file. */
+#define HAVE_SETJMP_H 1
+
+/* Define to 1 if you have the `setlinebuf' function. */
+#define HAVE_SETLINEBUF 1
+
+/* Define to 1 if you have the `setpgid' function. */
+#define HAVE_SETPGID 1
+
+/* define if setpgrp takes 0 arguments */
+#define HAVE_SETPGRP_0 1
+
+/* Define to 1 if you have the `setpriority' function. */
+#define HAVE_SETPRIORITY 1
+
+/* Define to 1 if you have the `setrlimit' function. */
+#define HAVE_SETRLIMIT 1
+
+/* Define to 1 if you have the `setsid' function. */
+#define HAVE_SETSID 1
+
+/* Define to 1 if you have the `settimeofday' function. */
+#define HAVE_SETTIMEOFDAY 1
+
+/* Define to 1 if you have the `setvbuf' function. */
+#define HAVE_SETVBUF 1
+
+/* Define to 1 if you have the <sgtty.h> header file. */
+#define HAVE_SGTTY_H 1
+
+/* Define to 1 if you have the `sigaction' function. */
+#define HAVE_SIGACTION 1
+
+/* Can we use SIGIO for tcp and udp IO? */
+#define HAVE_SIGNALED_IO 1
+
+/* Define to 1 if you have the `sigset' function. */
+#define HAVE_SIGSET 1
+
+/* Define to 1 if you have the `sigvec' function. */
+/* #undef HAVE_SIGVEC */
+
+/* sigwait() available? */
+#define HAVE_SIGWAIT 1
+
+/* Define to 1 if the system has the type `size_t'. */
+#define HAVE_SIZE_T 1
+
+/* Define if C99-compliant `snprintf' is available. */
+#define HAVE_SNPRINTF 1
+
+/* Define to 1 if you have the `socketpair' function. */
+#define HAVE_SOCKETPAIR 1
+
+/* Are Solaris privileges available? */
+#define HAVE_SOLARIS_PRIVS 1
+
+/* Define to 1 if you have the <stdarg.h> header file. */
+#define HAVE_STDARG_H 1
+
+/* Define to 1 if you have the <stdatomic.h> header file. */
+/* #undef HAVE_STDATOMIC_H */
+
+/* Define to 1 if stdbool.h conforms to C99. */
+#define HAVE_STDBOOL_H 1
+
+/* Define to 1 if you have the <stddef.h> header file. */
+/* #undef HAVE_STDDEF_H */
+
+/* Define to 1 if you have the <stdint.h> header file. */
+#define HAVE_STDINT_H 1
+
+/* Define to 1 if you have the <stdlib.h> header file. */
+#define HAVE_STDLIB_H 1
+
+/* Define to 1 if you have the `stime' function. */
+#define HAVE_STIME 1
+
+/* Define to 1 if you have the `strchr' function. */
+#define HAVE_STRCHR 1
+
+/* Define to 1 if you have the `strdup' function. */
+#define HAVE_STRDUP 1
+
+/* Define to 1 if you have the `strerror' function. */
+#define HAVE_STRERROR 1
+
+/* Define to 1 if you have the `strerror_r' function. */
+#define HAVE_STRERROR_R 1
+
+/* Define to 1 if you have the <strings.h> header file. */
+#define HAVE_STRINGS_H 1
+
+/* Define to 1 if you have the <string.h> header file. */
+#define HAVE_STRING_H 1
+
+/* Define to 1 if you have the `strlcat' function. */
+#define HAVE_STRLCAT 1
+
+/* Define to 1 if you have the `strlcpy' function. */
+#define HAVE_STRLCPY 1
+
+/* Define to 1 if you have the <stropts.h> header file. */
+#define HAVE_STROPTS_H 1
+
+/* Define to 1 if you have the `strrchr' function. */
+#define HAVE_STRRCHR 1
+
+/* Define to 1 if you have the `strsignal' function. */
+#define HAVE_STRSIGNAL 1
+
+/* Define to 1 if you have the `strtoll' function. */
+#define HAVE_STRTOLL 1
+
+/* Define to 1 if `decimal_point' is a member of `struct lconv'. */
+/* #undef HAVE_STRUCT_LCONV_DECIMAL_POINT */
+
+/* Define to 1 if `thousands_sep' is a member of `struct lconv'. */
+/* #undef HAVE_STRUCT_LCONV_THOUSANDS_SEP */
+
+/* Do we have struct ntptimeval? */
+#define HAVE_STRUCT_NTPTIMEVAL 1
+
+/* Define to 1 if `time.tv_nsec' is a member of `struct ntptimeval'. */
+/* #undef HAVE_STRUCT_NTPTIMEVAL_TIME_TV_NSEC */
+
+/* Does a system header define struct ppsclockev? */
+#define HAVE_STRUCT_PPSCLOCKEV 1
+
+/* Do we have struct snd_size? */
+/* #undef HAVE_STRUCT_SND_SIZE */
+
+/* Does a system header define struct sockaddr_storage? */
+#define HAVE_STRUCT_SOCKADDR_STORAGE 1
+
+/* struct timespec declared? */
+#define HAVE_STRUCT_TIMESPEC 1
+
+/* Define to 1 if you have the <sun/audioio.h> header file. */
+/* #undef HAVE_SUN_AUDIOIO_H */
+
+/* Define to 1 if you have the <synch.h> header file. */
+/* #undef HAVE_SYNCH_H */
+
+/* Define to 1 if you have the `sysconf' function. */
+#define HAVE_SYSCONF 1
+
+/* Define to 1 if you have the <sysexits.h> header file. */
+#define HAVE_SYSEXITS_H 1
+
+/* */
+/* #undef HAVE_SYSLOG_FACILITYNAMES */
+
+/* Define to 1 if you have the <sys/audioio.h> header file. */
+#define HAVE_SYS_AUDIOIO_H 1
+
+/* Define to 1 if you have the <sys/capability.h> header file. */
+/* #undef HAVE_SYS_CAPABILITY_H */
+
+/* Define to 1 if you have the <sys/clockctl.h> header file. */
+/* #undef HAVE_SYS_CLOCKCTL_H */
+
+/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
+   */
+/* #undef HAVE_SYS_DIR_H */
+
+/* Define to 1 if you have the <sys/file.h> header file. */
+#define HAVE_SYS_FILE_H 1
+
+/* Define to 1 if you have the <sys/i8253.h> header file. */
+/* #undef HAVE_SYS_I8253_H */
+
+/* Define to 1 if you have the <sys/ioctl.h> header file. */
+#define HAVE_SYS_IOCTL_H 1
+
+/* Define to 1 if you have the <sys/ipc.h> header file. */
+#define HAVE_SYS_IPC_H 1
+
+/* Define to 1 if you have the <sys/limits.h> header file. */
+/* #undef HAVE_SYS_LIMITS_H */
+
+/* Define to 1 if you have the <sys/lock.h> header file. */
+#define HAVE_SYS_LOCK_H 1
+
+/* Define to 1 if you have the <sys/mman.h> header file. */
+#define HAVE_SYS_MMAN_H 1
+
+/* Define to 1 if you have the <sys/modem.h> header file. */
+/* #undef HAVE_SYS_MODEM_H */
+
+/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
+   */
+/* #undef HAVE_SYS_NDIR_H */
+
+/* Define to 1 if you have the <sys/param.h> header file. */
+#define HAVE_SYS_PARAM_H 1
+
+/* Define to 1 if you have the <sys/pcl720.h> header file. */
+/* #undef HAVE_SYS_PCL720_H */
+
+/* Define to 1 if you have the <sys/poll.h> header file. */
+#define HAVE_SYS_POLL_H 1
+
+/* Define to 1 if you have the <sys/ppsclock.h> header file. */
+/* #undef HAVE_SYS_PPSCLOCK_H */
+
+/* Define to 1 if you have the <sys/ppstime.h> header file. */
+/* #undef HAVE_SYS_PPSTIME_H */
+
+/* Define to 1 if you have the <sys/prctl.h> header file. */
+/* #undef HAVE_SYS_PRCTL_H */
+
+/* Define to 1 if you have the <sys/procset.h> header file. */
+#define HAVE_SYS_PROCSET_H 1
+
+/* Define to 1 if you have the <sys/proc.h> header file. */
+#define HAVE_SYS_PROC_H 1
+
+/* Define to 1 if you have the <sys/resource.h> header file. */
+#define HAVE_SYS_RESOURCE_H 1
+
+/* Define to 1 if you have the <sys/sched.h> header file. */
+/* #undef HAVE_SYS_SCHED_H */
+
+/* Define to 1 if you have the <sys/select.h> header file. */
+#define HAVE_SYS_SELECT_H 1
+
+/* Define to 1 if you have the <sys/shm.h> header file. */
+#define HAVE_SYS_SHM_H 1
+
+/* Define to 1 if you have the <sys/signal.h> header file. */
+#define HAVE_SYS_SIGNAL_H 1
+
+/* Define to 1 if you have the <sys/socket.h> header file. */
+#define HAVE_SYS_SOCKET_H 1
+
+/* Define to 1 if you have the <sys/sockio.h> header file. */
+#define HAVE_SYS_SOCKIO_H 1
+
+/* Define to 1 if you have the <sys/soundcard.h> header file. */
+#define HAVE_SYS_SOUNDCARD_H 1
+
+/* Define to 1 if you have the <sys/stat.h> header file. */
+#define HAVE_SYS_STAT_H 1
+
+/* Define to 1 if you have the <sys/stream.h> header file. */
+#define HAVE_SYS_STREAM_H 1
+
+/* Define to 1 if you have the <sys/stropts.h> header file. */
+#define HAVE_SYS_STROPTS_H 1
+
+/* Define to 1 if you have the <sys/sysctl.h> header file. */
+/* #undef HAVE_SYS_SYSCTL_H */
+
+/* Define to 1 if you have the <sys/syssgi.h> header file. */
+/* #undef HAVE_SYS_SYSSGI_H */
+
+/* Define to 1 if you have the <sys/systune.h> header file. */
+/* #undef HAVE_SYS_SYSTUNE_H */
+
+/* Define to 1 if you have the <sys/termios.h> header file. */
+#define HAVE_SYS_TERMIOS_H 1
+
+/* Define to 1 if you have the <sys/timepps.h> header file. */
+/* #undef HAVE_SYS_TIMEPPS_H */
+
+/* Define to 1 if you have the <sys/timers.h> header file. */
+/* #undef HAVE_SYS_TIMERS_H */
+
+/* Define to 1 if you have the <sys/timex.h> header file. */
+#define HAVE_SYS_TIMEX_H 1
+
+/* Define to 1 if you have the <sys/time.h> header file. */
+#define HAVE_SYS_TIME_H 1
+
+/* Define to 1 if you have the <sys/tpro.h> header file. */
+/* #undef HAVE_SYS_TPRO_H */
+
+/* Define to 1 if you have the <sys/types.h> header file. */
+#define HAVE_SYS_TYPES_H 1
+
+/* Use sys/uio.h for struct iovec help */
+/* #undef HAVE_SYS_UIO_H */
+
+/* Define to 1 if you have the <sys/un.h> header file. */
+#define HAVE_SYS_UN_H 1
+
+/* Define to 1 if you have the <sys/var.h> header file. */
+#define HAVE_SYS_VAR_H 1
+
+/* Define to 1 if you have the <sys/wait.h> header file. */
+#define HAVE_SYS_WAIT_H 1
+
+/* Define to 1 if the system has the type `s_char'. */
+/* #undef HAVE_S_CHAR */
+
+/* Define to 1 if you have the <termios.h> header file. */
+#define HAVE_TERMIOS_H 1
+
+/* Define to 1 if you have the <termio.h> header file. */
+#define HAVE_TERMIO_H 1
+
+/* if you have Solaris LWP (thr) package */
+/* #undef HAVE_THR */
+
+/* Define to 1 if you have the <thread.h> header file. */
+/* #undef HAVE_THREAD_H */
+
+/* Define to 1 if you have the `thr_getconcurrency' function. */
+#define HAVE_THR_GETCONCURRENCY 1
+
+/* Define to 1 if you have the `thr_setconcurrency' function. */
+#define HAVE_THR_SETCONCURRENCY 1
+
+/* Define to 1 if you have the `thr_yield' function. */
+#define HAVE_THR_YIELD 1
+
+/* Obvious */
+/* #undef HAVE_TICKADJ_IN_STRUCT_CLOCKINFO */
+
+/* Define to 1 if you have the `timegm' function. */
+#define HAVE_TIMEGM 1
+
+/* Define to 1 if you have the <timepps.h> header file. */
+/* #undef HAVE_TIMEPPS_H */
+
+/* Define to 1 if you have the `timer_create' function. */
+#define HAVE_TIMER_CREATE 1
+
+/* Define to 1 if you have the <timex.h> header file. */
+/* #undef HAVE_TIMEX_H */
+
+/* Define to 1 if you have the <time.h> header file. */
+#define HAVE_TIME_H 1
+
+/* Do we have the TIOCGPPSEV ioctl (Solaris)? */
+#define HAVE_TIOCGPPSEV 1
+
+/* Do we have the TIOCSPPS ioctl (Solaris)? */
+#define HAVE_TIOCSPPS 1
+
+/* Do we have the TIO serial stuff? */
+/* #undef HAVE_TIO_SERIAL_STUFF */
+
+/* Define to 1 if the system has the type `uint16_t'. */
+#define HAVE_UINT16_T 1
+
+/* Define to 1 if the system has the type `uint32_t'. */
+#define HAVE_UINT32_T 1
+
+/* Define to 1 if the system has the type `uint8_t'. */
+#define HAVE_UINT8_T 1
+
+/* Define to 1 if the system has the type `uintmax_t'. */
+/* #undef HAVE_UINTMAX_T */
+
+/* Define to 1 if the system has the type `uintptr_t'. */
+#define HAVE_UINTPTR_T 1
+
+/* Define to 1 if the system has the type `uint_t'. */
+#define HAVE_UINT_T 1
+
+/* Define to 1 if you have the `umask' function. */
+#define HAVE_UMASK 1
+
+/* Define to 1 if you have the `uname' function. */
+#define HAVE_UNAME 1
+
+/* Define to 1 if you have the <unistd.h> header file. */
+#define HAVE_UNISTD_H 1
+
+/* deviant sigwait? */
+/* #undef HAVE_UNIXWARE_SIGWAIT */
+
+/* Define to 1 if the system has the type `unsigned long long int'. */
+#define HAVE_UNSIGNED_LONG_LONG_INT 1
+
+/* Define to 1 if you have the `updwtmp' function. */
+#define HAVE_UPDWTMP 1
+
+/* Define to 1 if you have the `updwtmpx' function. */
+#define HAVE_UPDWTMPX 1
+
+/* Define to 1 if you have the <utime.h> header file. */
+#define HAVE_UTIME_H 1
+
+/* Define to 1 if you have the <utmpx.h> header file. */
+#define HAVE_UTMPX_H 1
+
+/* Define to 1 if you have the <utmp.h> header file. */
+#define HAVE_UTMP_H 1
+
+/* Define to 1 if the system has the type `u_int32'. */
+/* #undef HAVE_U_INT32 */
+
+/* u_int32 type in DNS headers, not others. */
+/* #undef HAVE_U_INT32_ONLY_WITH_DNS */
+
+/* Define to 1 if you have the <values.h> header file. */
+/* #undef HAVE_VALUES_H */
+
+/* Define to 1 if you have the <varargs.h> header file. */
+/* #undef HAVE_VARARGS_H */
+
+/* Define to 1 if you have the `vfork' function. */
+#define HAVE_VFORK 1
+
+/* Define to 1 if you have the <vfork.h> header file. */
+/* #undef HAVE_VFORK_H */
+
+/* Define to 1 if you have the `vprintf' function. */
+#define HAVE_VPRINTF 1
+
+/* Define if C99-compliant `vsnprintf' is available. */
+#define HAVE_VSNPRINTF 1
+
+/* Define to 1 if you have the <wchar.h> header file. */
+#define HAVE_WCHAR_H 1
+
+/* Define to 1 if the system has the type `wchar_t'. */
+#define HAVE_WCHAR_T 1
+
+/* Define to 1 if the system has the type `wint_t'. */
+#define HAVE_WINT_T 1
+
+/* Define to 1 if `fork' works. */
+#define HAVE_WORKING_FORK 1
+
+/* Define to 1 if `vfork' works. */
+#define HAVE_WORKING_VFORK 1
+
+/* define if select implicitly yields */
+#define HAVE_YIELDING_SELECT 1
+
+/* Define to 1 if the system has the type `_Bool'. */
+#define HAVE__BOOL 1
+
+/* Define to 1 if you have the `_exit' function. */
+#define HAVE__EXIT 1
+
+/* Define to 1 if you have the </sys/sync/queue.h> header file. */
+/* #undef HAVE__SYS_SYNC_QUEUE_H */
+
+/* Define to 1 if you have the </sys/sync/sema.h> header file. */
+/* #undef HAVE__SYS_SYNC_SEMA_H */
+
+/* Define to 1 if you have the `__adjtimex' function. */
+/* #undef HAVE___ADJTIMEX */
+
+/* defined if C compiler supports __attribute__((...)) */
+#define HAVE___ATTRIBUTE__ /**/
+
+
+	/* define away __attribute__() if unsupported */
+	#ifndef HAVE___ATTRIBUTE__
+	# define __attribute__(x) /* empty */
+	#endif
+	#define ISC_PLATFORM_NORETURN_PRE
+	#define ISC_PLATFORM_NORETURN_POST __attribute__((__noreturn__))
+    
+
+
+/* Define to 1 if you have the `__ntp_gettime' function. */
+/* #undef HAVE___NTP_GETTIME */
+
+/* Define to 1 if you have the `__res_init' function. */
+/* #undef HAVE___RES_INIT */
+
+/* Does struct sockaddr_storage have __ss_family? */
+/* #undef HAVE___SS_FAMILY_IN_SS */
+
+
+	    /* Handle sockaddr_storage.__ss_family */
+	    #ifdef HAVE___SS_FAMILY_IN_SS
+	    # define ss_family __ss_family
+	    #endif /* HAVE___SS_FAMILY_IN_SS */
+	
+    
+
+/* Define to provide `rpl_snprintf' function. */
+/* #undef HW_WANT_RPL_SNPRINTF */
+
+/* Define to provide `rpl_vsnprintf' function. */
+/* #undef HW_WANT_RPL_VSNPRINTF */
+
+/* Retry queries on _any_ DNS error? */
+#define IGNORE_DNS_ERRORS 1
+
+/* Should we use the IRIG sawtooth filter? */
+#define IRIG_SUCKS 1
+
+/* Enclose PTHREAD_ONCE_INIT in extra braces? */
+/* #undef ISC_PLATFORM_BRACEPTHREADONCEINIT */
+
+/* Do we need to fix in6isaddr? */
+/* #undef ISC_PLATFORM_FIXIN6ISADDR */
+
+/* ISC: do we have if_nametoindex()? */
+#define ISC_PLATFORM_HAVEIFNAMETOINDEX 1
+
+/* have struct if_laddrconf? */
+/* #undef ISC_PLATFORM_HAVEIF_LADDRCONF */
+
+/* have struct if_laddrreq? */
+/* #undef ISC_PLATFORM_HAVEIF_LADDRREQ */
+
+/* have struct in6_pktinfo? */
+#define ISC_PLATFORM_HAVEIN6PKTINFO 1
+
+/* have IPv6? */
+#define ISC_PLATFORM_HAVEIPV6 1
+
+/* struct sockaddr has sa_len? */
+/* #undef ISC_PLATFORM_HAVESALEN */
+
+/* sin6_scope_id? */
+#define ISC_PLATFORM_HAVESCOPEID 1
+
+/* missing in6addr_any? */
+/* #undef ISC_PLATFORM_NEEDIN6ADDRANY */
+
+/* Do we need netinet6/in6.h? */
+/* #undef ISC_PLATFORM_NEEDNETINET6IN6H */
+
+/* ISC: provide inet_ntop() */
+/* #undef ISC_PLATFORM_NEEDNTOP */
+
+/* Declare in_port_t? */
+/* #undef ISC_PLATFORM_NEEDPORTT */
+
+/* ISC: provide inet_pton() */
+/* #undef ISC_PLATFORM_NEEDPTON */
+
+/* enable libisc thread support? */
+#define ISC_PLATFORM_USETHREADS 1
+
+/* Does the kernel have an FLL bug? */
+/* #undef KERNEL_FLL_BUG */
+
+/* Does the kernel support precision time discipline? */
+#define KERNEL_PLL 1
+
+/* Define to use libseccomp system call filtering. */
+/* #undef KERN_SECCOMP */
+
+/* What is (probably) the name of DOSYNCTODR in the kernel? */
+#define K_DOSYNCTODR_NAME "dosynctodr"
+
+/* What is (probably) the name of NOPRINTF in the kernel? */
+#define K_NOPRINTF_NAME "noprintf"
+
+/* What is the name of TICKADJ in the kernel? */
+/* #undef K_TICKADJ_NAME */
+
+/* What is the name of TICK in the kernel? */
+#define K_TICK_NAME "nsec_per_tick"
+
+/* define to 1 if library is thread safe */
+#define LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE 1
+
+/* leap smear mechanism */
+/* #undef LEAP_SMEAR */
+
+/* Define to any value to include libseccomp sandboxing. */
+/* #undef LIBSECCOMP */
+
+/* Should we align with the NIST lockclock scheme? */
+/* #undef LOCKCLOCK */
+
+/* Define to the sub-directory in which libtool stores uninstalled libraries.
+   */
+#define LT_OBJDIR ".libs/"
+
+/* Does the target support multicast IP? */
+#define MCAST 1
+
+/* Should we recommend a minimum value for tickadj? */
+/* #undef MIN_REC_TICKADJ */
+
+/* Define to 1 if the compiler does not support C99's structure
+   initialization. */
+/* #undef MISSING_C99_STRUCT_INIT */
+
+/* having to fork the DNS worker early when doing chroot? */
+/* #undef NEED_EARLY_FORK */
+
+/* Do we need HPUX adjtime() library support? */
+/* #undef NEED_HPUX_ADJTIME */
+
+/* Do we want the HPUX FindConfig()? */
+/* #undef NEED_HPUX_FINDCONFIG */
+
+/* We need to provide netsnmp_daemonize() */
+/* #undef NEED_NETSNMP_DAEMONIZE */
+
+/* pthread_init() required? */
+/* #undef NEED_PTHREAD_INIT */
+
+/* use PTHREAD_SCOPE_SYSTEM? */
+/* #undef NEED_PTHREAD_SCOPE_SYSTEM */
+
+/* Do we need the qnx adjtime call? */
+/* #undef NEED_QNX_ADJTIME */
+
+/* Do we need extra room for SO_RCVBUF? (HPUX < 8) */
+/* #undef NEED_RCVBUF_SLOP */
+
+/* Do we need an s_char typedef? */
+#define NEED_S_CHAR_TYPEDEF 1
+
+/* Might nlist() values require an extra level of indirection (AIX)? */
+/* #undef NLIST_EXTRA_INDIRECTION */
+
+/* does struct nlist use a name union? */
+/* #undef NLIST_NAME_UNION */
+
+/* nlist stuff */
+#define NLIST_STRUCT 1
+
+/* Should we NOT read /dev/kmem? */
+#define NOKMEM 1
+
+/* Define to 1 if your C compiler doesn't accept -c and -o together. */
+/* #undef NO_MINUS_C_MINUS_O */
+
+/* Should we avoid #warning on option name collisions? */
+/* #undef NO_OPTION_NAME_WARNINGS */
+
+/* Is there a problem using PARENB and IGNPAR? */
+/* #undef NO_PARENB_IGNPAR */
+
+/* define if you have (or want) no threads */
+/* #undef NO_THREADS */
+
+/* Default location of crypto key info */
+#define NTP_KEYSDIR "/etc/inet"
+
+/* Path to sign daemon rendezvous socket */
+/* #undef NTP_SIGND_PATH */
+
+/* Do we have ntp_{adj,get}time in libc? */
+#define NTP_SYSCALLS_LIBC 1
+
+/* Do we have ntp_{adj,get}time in the kernel? */
+/* #undef NTP_SYSCALLS_STD */
+
+/* Do we have support for SHMEM_STATUS? */
+#define ONCORE_SHMEM_STATUS 1
+
+/* Use OpenSSL? */
+#define OPENSSL /**/
+
+/* Should we open the broadcast socket? */
+#define OPEN_BCAST_SOCKET 1
+
+/* need to recreate sockets on changed routing? */
+/* #undef OS_MISSES_SPECIFIC_ROUTE_UPDATES */
+
+/* wildcard socket needs REUSEADDR to bind interface addresses */
+/* #undef OS_NEEDS_REUSEADDR_FOR_IFADDRBIND */
+
+/* Do we need to override the system's idea of HZ? */
+/* #undef OVERRIDE_HZ */
+
+/* Name of package */
+#define PACKAGE "ntp"
+
+/* Define to the address where bug reports for this package should be sent. */
+#define PACKAGE_BUGREPORT "http://bugs.ntp.org./"
+
+/* Define to the full name of this package. */
+#define PACKAGE_NAME "ntp"
+
+/* Define to the full name and version of this package. */
+#define PACKAGE_STRING "ntp 4.2.8p7"
+
+/* Define to the one symbol short name of this package. */
+#define PACKAGE_TARNAME "ntp"
+
+/* Define to the home page for this package. */
+#define PACKAGE_URL "http://www.ntp.org./"
+
+/* Define to the version of this package. */
+
+/* data dir */
+#define PERLLIBDIR "/usr/share/ntp/lib"
+
+/* define to a working POSIX compliant shell */
+#define POSIX_SHELL "/usr/bin/bash"
+
+/* PARSE kernel PLL PPS support */
+/* #undef PPS_SYNC */
+
+/* Preset a value for 'tick'? */
+#define PRESET_TICK 1000000L/hz
+
+/* Preset a value for 'tickadj'? */
+#define PRESET_TICKADJ 500/hz
+
+/* Should we not IGNPAR (Linux)? */
+/* #undef RAWDCF_NO_IGNPAR */
+
+/* enable thread safety */
+#define REENTRANT 1
+
+/* Basic refclock support? */
+#define REFCLOCK 1
+
+/* Do we want the ReliantUNIX clock hacks? */
+/* #undef RELIANTUNIX_CLOCK */
+
+/* define if sched_yield yields the entire process */
+/* #undef REPLACE_BROKEN_YIELD */
+
+/* Define as the return type of signal handlers (`int' or `void'). */
+#define RETSIGTYPE void
+
+/* saveconfig mechanism */
+#define SAVECONFIG 1
+
+/* Do we want the SCO clock hacks? */
+/* #undef SCO5_CLOCK */
+
+/* The size of `char *', as computed by sizeof. */
+#define SIZEOF_CHAR_P 8
+
+/* The size of `int', as computed by sizeof. */
+#define SIZEOF_INT 4
+
+/* The size of `long', as computed by sizeof. */
+#define SIZEOF_LONG 8
+
+/* The size of `long long', as computed by sizeof. */
+#define SIZEOF_LONG_LONG 8
+
+/* The size of `pthread_t', as computed by sizeof. */
+#define SIZEOF_PTHREAD_T 4
+
+/* The size of `short', as computed by sizeof. */
+#define SIZEOF_SHORT 2
+
+/* The size of `signed char', as computed by sizeof. */
+#define SIZEOF_SIGNED_CHAR 1
+
+/* The size of `time_t', as computed by sizeof. */
+#define SIZEOF_TIME_T 8
+
+/* Does SIOCGIFCONF return size in the buffer? */
+/* #undef SIZE_RETURNED_IN_BUFFER */
+
+/* Slew always? */
+/* #undef SLEWALWAYS */
+
+/* If using the C implementation of alloca, define if you know the
+   direction of stack growth for your system; otherwise it will be
+   automatically deduced at runtime.
+	STACK_DIRECTION > 0 => grows toward higher addresses
+	STACK_DIRECTION < 0 => grows toward lower addresses
+	STACK_DIRECTION = 0 => direction of growth unknown */
+/* #undef STACK_DIRECTION */
+
+/* Define to 1 if you have the ANSI C header files. */
+#define STDC_HEADERS 1
+
+/* Step, then slew the clock? */
+/* #undef STEP_SLEW */
+
+/* Define to 1 if strerror_r returns char *. */
+/* #undef STRERROR_R_CHAR_P */
+
+/* canonical system (cpu-vendor-os) of where we should run */
+
+/* Does Xettimeofday take 1 arg? */
+/* #undef SYSV_TIMEOFDAY */
+
+/* Do we need to #define _SVID3 when we #include <termios.h>? */
+/* #undef TERMIOS_NEEDS__SVID3 */
+
+/* enable thread safety */
+#define THREADSAFE 1
+
+/* enable thread safety */
+#define THREAD_SAFE 1
+
+/* Is K_TICKADJ_NAME in nanoseconds? */
+#define TICKADJ_NANO 1
+
+/* Is K_TICK_NAME in nanoseconds? */
+#define TICK_NANO 1
+
+/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
+#define TIME_WITH_SYS_TIME 1
+
+/* Define to 1 if your <sys/time.h> declares `struct tm'. */
+/* #undef TM_IN_SYS_TIME */
+
+/* Provide a typedef for uintptr_t? */
+#ifndef HAVE_UINTPTR_T
+typedef unsigned int	uintptr_t;
+#define HAVE_UINTPTR_T 1
+#endif
+
+/* What type to use for setsockopt */
+#define TYPEOF_IP_MULTICAST_LOOP u_char
+
+/* Do we set process groups with -pid? */
+/* #undef UDP_BACKWARDS_SETOWN */
+
+/* Must we have a CTTY for fsetown? */
+/* #undef USE_FSETOWNCTTY */
+
+/* Use OpenSSL's crypto random functions */
+#define USE_OPENSSL_CRYPTO_RAND 1
+
+/* OK to use snprintb()? */
+/* #undef USE_SNPRINTB */
+
+/* Can we use SIGPOLL for tty IO? */
+#define USE_TTY_SIGPOLL 1
+
+/* Can we use SIGPOLL for UDP? */
+/* #undef USE_UDP_SIGPOLL */
+
+/* Version number of package */
+
+/* vsnprintf expands "%m" to strerror(errno) */
+/* #undef VSNPRINTF_PERCENT_M */
+
+/* configure --enable-ipv6 */
+#define WANT_IPV6 1
+
+   significant byte first (like Motorola and SPARC, unlike Intel). */
+#if defined AC_APPLE_UNIVERSAL_BUILD
+# endif
+#else
+# endif
+#endif
+
+/* routine worker child proc uses to exit. */
+#define WORKER_CHILD_EXIT exit
+
+/* Define to 1 if on MINIX. */
+/* #undef _MINIX */
+
+/* Define to 2 if the system does not provide POSIX.1 features except with
+   this defined. */
+/* #undef _POSIX_1_SOURCE */
+
+/* Define to 1 if you need to in order for `stat' and other things to work. */
+/* #undef _POSIX_SOURCE */
+
+/* enable thread safety */
+#define _REENTRANT 1
+
+/* enable thread safety */
+#define _SGI_MP_SOURCE 1
+
+/* enable thread safety */
+#define _THREADSAFE 1
+
+/* enable thread safety */
+#define _THREAD_SAFE 1
+
+/* Define to 500 only on HP-UX. */
+/* #undef _XOPEN_SOURCE */
+
+/* Are we _special_? */
+/* #undef __APPLE_USE_RFC_3542 */
+
+/* Define to 1 if type `char' is unsigned and you are not using gcc.  */
+#ifndef __CHAR_UNSIGNED__
+/* # undef __CHAR_UNSIGNED__ */
+#endif
+
+/* Enable extensions on AIX 3, Interix.  */
+#ifndef _ALL_SOURCE
+# define _ALL_SOURCE 1
+#endif
+/* Enable GNU extensions on systems that have them.  */
+#ifndef _GNU_SOURCE
+# define _GNU_SOURCE 1
+#endif
+/* Enable threading extensions on Solaris.  */
+#ifndef _POSIX_PTHREAD_SEMANTICS
+# define _POSIX_PTHREAD_SEMANTICS 1
+#endif
+/* Enable extensions on HP NonStop.  */
+#ifndef _TANDEM_SOURCE
+# define _TANDEM_SOURCE 1
+#endif
+/* Enable general extensions on Solaris.  */
+#ifndef __EXTENSIONS__
+# define __EXTENSIONS__ 1
+#endif
+
+
+/* deviant */
+/* #undef adjtimex */
+
+/* Define to empty if `const' does not conform to ANSI C. */
+/* #undef const */
+
+/* Define to `int' if <sys/types.h> doesn't define. */
+/* #undef gid_t */
+
+/* Define to `__inline__' or `__inline' if that's what the C compiler
+   calls it, or to nothing if 'inline' is not supported under any name.  */
+#ifndef __cplusplus
+/* #undef inline */
+#endif
+
+/* Define to the widest signed integer type if <stdint.h> and <inttypes.h> do
+   not define. */
+/* #undef intmax_t */
+
+/* deviant */
+/* #undef ntp_adjtime */
+
+/* deviant */
+/* #undef ntp_gettime */
+
+/* Define to `long int' if <sys/types.h> does not define. */
+/* #undef off_t */
+
+/* Define to `int' if <sys/types.h> does not define. */
+/* #undef pid_t */
+
+/* Define to `unsigned int' if <sys/types.h> does not define. */
+/* #undef size_t */
+
+	
+	    #if !defined(_KERNEL) && !defined(PARSESTREAM)
+	    /*
+	     * stdio.h must be included after _GNU_SOURCE is defined
+	     * but before #define snprintf rpl_snprintf
+	     */
+	    # include <stdio.h>	
+	    #endif
+	
+
+/* Define to rpl_snprintf if the replacement function should be used. */
+/* #undef snprintf */
+
+/* Define to `int' if <sys/types.h> doesn't define. */
+/* #undef uid_t */
+
+/* Define to the widest unsigned integer type if <stdint.h> and <inttypes.h>
+   do not define. */
+/* #undef uintmax_t */
+
+/* Define to the type of an unsigned integer type wide enough to hold a
+   pointer, if such a type exists, and if the system does not define it. */
+/* #undef uintptr_t */
+
+/* Define as `fork' if `vfork' does not work. */
+/* #undef vfork */
+
+/* Define to empty if the keyword `volatile' does not work. Warning: valid
+   code using `volatile' can become incorrect without. Disable with care. */
+/* #undef volatile */
+
+/* Define to rpl_vsnprintf if the replacement function should be used. */
+/* #undef vsnprintf */
+
+
+#ifndef MPINFOU_PREDECLARED
+# define MPINFOU_PREDECLARED
+typedef union mpinfou {
+	struct pdk_mpinfo *pdkptr;
+	struct mpinfo *pikptr;
+} mpinfou_t;
+#endif
+
+
+
+	#if !defined(_KERNEL) && !defined(PARSESTREAM)
+	# if defined(HW_WANT_RPL_VSNPRINTF)
+	#  if defined(__cplusplus)
+	extern "C" {
+	# endif
+	# include <stdarg.h>
+	int rpl_vsnprintf(char *, size_t, const char *, va_list);
+	# if defined(__cplusplus)
+	}
+	#  endif
+	# endif
+	# if defined(HW_WANT_RPL_SNPRINTF)
+	#  if defined(__cplusplus)
+	extern "C" {
+	#  endif
+	int rpl_snprintf(char *, size_t, const char *, ...);
+	#  if defined(__cplusplus)
+	}
+	#  endif
+	# endif
+	#endif	/* !defined(_KERNEL) && !defined(PARSESTREAM) */
+