using config_ prefix instead of xbps_conf_ for tests

This commit is contained in:
Enno Boland 2014-05-13 11:41:40 +02:00
parent 152ec0354f
commit f4c0ecdcbf
2 changed files with 5 additions and 5 deletions

View File

@ -2,4 +2,4 @@ syntax("kyuafile", 1)
test_suite("libxbps")
atf_test_program{name="xbps_conf_test"}
atf_test_program{name="config_test"}

View File

@ -26,13 +26,13 @@
#include <atf-c.h>
#include <xbps.h>
ATF_TC(xbps_conf_include_test);
ATF_TC_HEAD(xbps_conf_include_test, tc)
ATF_TC(config_include_test);
ATF_TC_HEAD(config_include_test, tc)
{
atf_tc_set_md_var(tc, "descr", "Test including files by file globbing");
}
ATF_TC_BODY(xbps_conf_include_test, tc)
ATF_TC_BODY(config_include_test, tc)
{
struct xbps_handle xh;
const char *tcsdir;
@ -58,7 +58,7 @@ ATF_TC_BODY(xbps_conf_include_test, tc)
ATF_TP_ADD_TCS(tp)
{
ATF_TP_ADD_TC(tp, xbps_conf_include_test);
ATF_TP_ADD_TC(tp, config_include_test);
return atf_no_error();
}