mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-08 21:49:06 -04:00
74 lines
1.7 KiB
C
74 lines
1.7 KiB
C
/* $NetBSD: run-calendar.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
|
|
|
|
/* AUTOGENERATED FILE. DO NOT EDIT. */
|
|
|
|
//=======Test Runner Used To Run Each Test Below=====
|
|
#define RUN_TEST(TestFunc, TestLineNum) \
|
|
{ \
|
|
Unity.CurrentTestName = #TestFunc; \
|
|
Unity.CurrentTestLineNumber = TestLineNum; \
|
|
Unity.NumberOfTests++; \
|
|
if (TEST_PROTECT()) \
|
|
{ \
|
|
setUp(); \
|
|
TestFunc(); \
|
|
} \
|
|
if (TEST_PROTECT() && !TEST_IS_IGNORED) \
|
|
{ \
|
|
tearDown(); \
|
|
} \
|
|
UnityConcludeTest(); \
|
|
}
|
|
|
|
//=======Automagically Detected Files To Include=====
|
|
#include "unity.h"
|
|
#include <setjmp.h>
|
|
#include <stdio.h>
|
|
|
|
//=======External Functions This Runner Calls=====
|
|
extern void setUp(void);
|
|
extern void tearDown(void);
|
|
extern void test_DaySplitMerge();
|
|
extern void test_SplitYearDays1();
|
|
extern void test_SplitYearDays2();
|
|
extern void test_RataDie1();
|
|
extern void test_LeapYears1();
|
|
extern void test_LeapYears2();
|
|
extern void test_RoundTripDate();
|
|
extern void test_RoundTripYearStart();
|
|
extern void test_RoundTripMonthStart();
|
|
extern void test_RoundTripWeekStart();
|
|
extern void test_RoundTripDayStart();
|
|
|
|
|
|
//=======Test Reset Option=====
|
|
void resetTest()
|
|
{
|
|
tearDown();
|
|
setUp();
|
|
}
|
|
|
|
char *progname;
|
|
|
|
|
|
//=======MAIN=====
|
|
int main(int argc, char *argv[])
|
|
{
|
|
progname = argv[0];
|
|
Unity.TestFile = "calendar.c";
|
|
UnityBegin("calendar.c");
|
|
RUN_TEST(test_DaySplitMerge, 230);
|
|
RUN_TEST(test_SplitYearDays1, 254);
|
|
RUN_TEST(test_SplitYearDays2, 268);
|
|
RUN_TEST(test_RataDie1, 283);
|
|
RUN_TEST(test_LeapYears1, 293);
|
|
RUN_TEST(test_LeapYears2, 308);
|
|
RUN_TEST(test_RoundTripDate, 326);
|
|
RUN_TEST(test_RoundTripYearStart, 355);
|
|
RUN_TEST(test_RoundTripMonthStart, 371);
|
|
RUN_TEST(test_RoundTripWeekStart, 387);
|
|
RUN_TEST(test_RoundTripDayStart, 403);
|
|
|
|
return (UnityEnd());
|
|
}
|