From f4c0ecdcbf6923dbf70925960e9fba08f0e77c74 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Tue, 13 May 2014 11:41:40 +0200 Subject: [PATCH] using config_ prefix instead of xbps_conf_ for tests --- tests/xbps/libxbps/config/Kyuafile | 2 +- tests/xbps/libxbps/config/main.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/xbps/libxbps/config/Kyuafile b/tests/xbps/libxbps/config/Kyuafile index 0d015857..d6d65250 100644 --- a/tests/xbps/libxbps/config/Kyuafile +++ b/tests/xbps/libxbps/config/Kyuafile @@ -2,4 +2,4 @@ syntax("kyuafile", 1) test_suite("libxbps") -atf_test_program{name="xbps_conf_test"} +atf_test_program{name="config_test"} diff --git a/tests/xbps/libxbps/config/main.c b/tests/xbps/libxbps/config/main.c index 9a4f02de..dbfcbb1d 100644 --- a/tests/xbps/libxbps/config/main.c +++ b/tests/xbps/libxbps/config/main.c @@ -26,13 +26,13 @@ #include #include -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(); }