Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/pkg
Path: blob/main/tests/lib/test.c
2065 views
1
#include <atf-c.h>
2
#include "tests.h"
3
4
ATF_TC_WITHOUT_HEAD(manifest);
5
ATF_TC_WITHOUT_HEAD(pkg);
6
7
ATF_TC_BODY(manifest, tc)
8
{
9
test_manifest();
10
}
11
12
ATF_TC_BODY(pkg, tc)
13
{
14
test_pkg();
15
}
16
ATF_TP_ADD_TCS(tp)
17
{
18
ATF_TP_ADD_TC(tp, manifest);
19
ATF_TP_ADD_TC(tp, pkg);
20
return atf_no_error();
21
}
22
23