/ tests / lib / test.c
test.c
 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  }