From 3ecb06bcb6fd7f6ea60b5966de8edda7fa0c002c Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Wed, 9 Dec 2015 07:59:17 -0500 Subject: [PATCH] test: Remove library directory creating functions Changes to the collections layer mean that I don't need this anymore. Signed-off-by: Anna Schumaker --- include/tests/test.h | 2 -- tests/test.c | 10 ---------- 2 files changed, 12 deletions(-) diff --git a/include/tests/test.h b/include/tests/test.h index 1716a9e5..ee386f35 100644 --- a/include/tests/test.h +++ b/include/tests/test.h @@ -102,7 +102,5 @@ void test_cp_data_dir(); void test_rm_data_dir(); gchar *test_data_file(const gchar *); bool test_data_file_exists(const gchar *); -void test_generate_library(); -void test_rm_library_dirs(); #endif /* OCARINA_TESTS_TEST_H */ diff --git a/tests/test.c b/tests/test.c index fb8263c4..bdea3aa8 100644 --- a/tests/test.c +++ b/tests/test.c @@ -169,16 +169,6 @@ out: g_free(path); } -void test_generate_library() -{ - system("tests/gen_library.sh"); -} - -void test_rm_library_dirs() -{ - system("rm -r /tmp/ocarina/dir2 /tmp/ocarina/dir4"); -} - int main(int argc, char **argv) { unsigned int i;