/freebsd/contrib/ntp/sntp/unity/ |
H A D | unity.c | 9 #define UNITY_FAIL_AND_BAIL { Unity.CurrentTestFailed = 1; longjmp(Unity.AbortFrame, 1); } 10 #define UNITY_IGNORE_AND_BAIL { Unity.CurrentTestIgnored = 1; longjmp(Unity.AbortFrame, 1); } 12 #define UNITY_SKIP_EXECUTION { if ((Unity.CurrentTestFailed != 0) || (Unity.CurrentTestIgnored != … 15 struct _Unity Unity; variable 286 UnityPrint(Unity.CurrentTestName); in UnityTestResultsBegin() 293 UnityTestResultsBegin(Unity.TestFile, line); in UnityTestResultsFailBegin() 294 if (Unity.isExpectingFail) in UnityTestResultsFailBegin() 310 if (Unity.isExpectingFail == 1 && Unity.CurrentTestFailed == 0) in UnityConcludeTest() 313 Unity.TestXPASSES++; in UnityConcludeTest() 319 if (Unity.isExpectingFail == 1 && Unity.CurrentTestFailed == 1) in UnityConcludeTest() [all …]
|
H A D | unity_fixture.c | 81 Unity.CurrentTestFailed = 0; in UnityTestRunner() 82 Unity.TestFile = file; in UnityTestRunner() 83 Unity.CurrentTestName = printableName; in UnityTestRunner() 84 Unity.CurrentTestLineNumber = line; in UnityTestRunner() 90 Unity.NumberOfTests++; in UnityTestRunner() 107 if (!Unity.CurrentTestFailed) in UnityTestRunner() 116 Unity.NumberOfTests++; in UnityIgnoreTest() 117 Unity.CurrentTestIgnored = 1; in UnityIgnoreTest() 312 return Unity.TestFailures; in UnityFailureCount() 371 if (Unity.CurrentTestIgnored) in UnityConcludeFixtureTest() [all …]
|
H A D | unity_internals.h | 2 Unity Project - A Test Framework for C 16 // Unity Attempts to Auto-Detect Integer Types 402 extern struct _Unity Unity; 537 #define TEST_PROTECT() (setjmp(Unity.AbortFrame) == 0) 539 #define TEST_ABORT() {longjmp(Unity.AbortFrame, 1);} 563 #define TEST_LINE_NUM (Unity.CurrentTestLineNumber) 564 #define TEST_IS_IGNORED (Unity.CurrentTestIgnored) 566 Unity.CurrentTestName = a; \ 567 Unity.CurrentTestLineNumber = (UNITY_LINE_TYPE)(__LINE__); \ 568 Unity [all...] |
/freebsd/contrib/ntp/sntp/unity/auto/ |
H A D | runner_maybe.c | 6 Unity.CurrentTestName = #TestFunc; \ 7 Unity.CurrentTestLineNumber = TestLineNum; \ 8 Unity.NumberOfTests++; \ 45 Unity.TestFile = "../ut-2803.c"; in main()
|
/freebsd/contrib/ntp/sntp/tests/ |
H A D | run-networking.c | 6 Unity.CurrentTestName = #TestFunc; \ 7 Unity.CurrentTestLineNumber = TestLineNum; \ 8 Unity.NumberOfTests++; \
|
H A D | run-t-log.c | 6 Unity.CurrentTestName = #TestFunc; \ 7 Unity.CurrentTestLineNumber = TestLineNum; \ 8 Unity.NumberOfTests++; \
|
H A D | run-keyFile.c | 6 Unity.CurrentTestName = #TestFunc; \ 7 Unity.CurrentTestLineNumber = TestLineNum; \ 8 Unity.NumberOfTests++; \
|
H A D | run-kodDatabase.c | 6 Unity.CurrentTestName = #TestFunc; \ 7 Unity.CurrentTestLineNumber = TestLineNum; \ 8 Unity.NumberOfTests++; \
|
H A D | run-kodFile.c | 6 Unity.CurrentTestName = #TestFunc; \ 7 Unity.CurrentTestLineNumber = TestLineNum; \ 8 Unity.NumberOfTests++; \
|
H A D | run-utilities.c | 6 Unity.CurrentTestName = #TestFunc; \ 7 Unity.CurrentTestLineNumber = TestLineNum; \ 8 Unity.NumberOfTests++; \
|
H A D | run-crypto.c | 6 Unity.CurrentTestName = #TestFunc; \ 7 Unity.CurrentTestLineNumber = TestLineNum; \ 8 Unity.NumberOfTests++; \
|
H A D | run-packetHandling.c | 6 Unity.CurrentTestName = #TestFunc; \ 7 Unity.CurrentTestLineNumber = TestLineNum; \ 8 Unity.NumberOfTests++; \
|
H A D | run-packetProcessing.c | 6 Unity.CurrentTestName = #TestFunc; \ 7 Unity.CurrentTestLineNumber = TestLineNum; \ 8 Unity.NumberOfTests++; \
|
/freebsd/contrib/ntp/tests/libntp/ |
H A D | run-realpath.c | 6 Unity.CurrentTestName = #TestFunc; \ 7 Unity.CurrentTestLineNumber = TestLineNum; \ 8 Unity.NumberOfTests++; \
|
H A D | run-digests.c | 6 Unity.CurrentTestName = #TestFunc; \ 7 Unity.CurrentTestLineNumber = TestLineNum; \ 8 Unity.NumberOfTests++; \
|
/freebsd/contrib/ntp/sntp/m4/ |
H A D | ntp_unitytest.m4 | 2 dnl NTP_UNITYBUILD - Unity build support
|
/freebsd/contrib/ntp/ |
H A D | NEWS | 380 * [Bug 3585] Unity tests mix buffered and unbuffered output <perlinger@ntp.org> 2412 the newly-written Unity test programs. These were fixed. 2442 * Unity cleanup for FreeBSD-6.4. Harlan Stenn. 2443 * Unity test cleanup. Harlan Stenn. 2839 * Put Unity CPPFLAGS items in unity_config.h. Harlan Stenn. 2881 * sntp/tests/crypto.c is now using proper Unity's assertions, fixed formatting. 2886 * sntp/tests/packetHandling.c is now using proper Unity's assertions, 2888 * sntp/tests/keyFile.c is now using proper Unity's assertions, fixed formatting. 2892 * sntp/tests/utilities.c is now using proper Unity's assertions, changed 2922 * Added declarations to all Unity test [all...] |
H A D | ChangeLog | 314 * [Bug 3585] Unity tests mix buffered and unbuffered output <perlinger@ntp.org> 883 * Unity cleanup for FreeBSD-6.4. Harlan Stenn. 884 * Unity test cleanup. Harlan Stenn. 942 * Put Unity CPPFLAGS items in unity_config.h. Harlan Stenn. 984 * sntp/tests/crypto.c is now using proper Unity's assertions, fixed formatting. 989 * sntp/tests/packetHandling.c is now using proper Unity's assertions, 991 * sntp/tests/keyFile.c is now using proper Unity's assertions, fixed formatting. 995 * sntp/tests/utilities.c is now using proper Unity's assertions, changed 1025 * Added declarations to all Unity tests, and did minor fixes to them. 1028 with the latest Unity update [all...] |
H A D | CommitLog | 3642 Unity generated runner for digests.c 5199 Fix problem with FreeBSD #define noreturn _Noreturn expanding to invalid __attribute((_Noreturn)), upstreamed to Unity github. 12047 [Bug 3585] Unity tests mix buffered and unbuffered output 12050 [Bug 3585] Unity tests mix buffered and unbuffered output 12053 [Bug 3585] Unity tests mix buffered and unbuffered output 12057 [Bug 3585] Unity tests mix buffered and unbuffered output 12061 [Bug 3585] Unity tests mix buffered and unbuffered output 12065 [Bug 3585] Unity tests mix buffered and unbuffered output 12069 [Bug 3585] Unity tests mix buffered and unbuffered output 12073 [Bug 3585] Unity test [all...] |
/freebsd/contrib/file/magic/Magdir/ |
H A D | elf | 217 >18 leshort 110 PKU-Unity Ltd.,
|
H A D | filesystems | 2103 >28 byte 20 Unity OS/
|
/freebsd/usr.sbin/acpi/acpidump/ |
H A D | acpi.c | 1934 PRINTFLAG(ACPI_IVMD_UNITY, Unity); in acpi_handle_ivrs_ivmd()
|
/freebsd/share/misc/ |
H A D | pci_vendors | 7297 0006 MPC8245 [Unity] 14996 2306 Unity Fibre Channel Controller 14997 2501 Unity Ethernet Controller 14998 2505 Unity Fibre Channel Controller
|