From 544f55179556769ad7570b983519d17382b61764 Mon Sep 17 00:00:00 2001 From: "Thomas J. Donovan" Date: Fri, 25 Jul 2008 03:21:54 +0000 Subject: Moved new apr_file_link() function to open.c for all platforms Fixed args & return value for Windows. re: PR 44841 git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@679652 13f79535-47bb-0310-9956-ffa450edef68 --- test/testfilecopy.c | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'test/testfilecopy.c') diff --git a/test/testfilecopy.c b/test/testfilecopy.c index f1a64f1f8..5b64bc053 100644 --- a/test/testfilecopy.c +++ b/test/testfilecopy.c @@ -123,23 +123,6 @@ static void append_exist(abts_case *tc, void *data) APR_ASSERT_SUCCESS(tc, "Couldn't remove copy file", rv); } -static void link_existing(abts_case *tc, void *data) -{ - apr_status_t rv; - - rv = apr_file_link("data/file_datafile.txt", "data/file_datafile2.txt"); - apr_file_remove("data/file_datafile2.txt", p); - ABTS_ASSERT(tc, "Couldn't create hardlink to file", rv == APR_SUCCESS); -} - -static void link_nonexisting(abts_case *tc, void *data) -{ - apr_status_t rv; - - rv = apr_file_link("data/does_not_exist.txt", "data/fake.txt"); - ABTS_ASSERT(tc, "", rv != APR_SUCCESS); -} - abts_suite *testfilecopy(abts_suite *suite) { suite = ADD_SUITE(suite) @@ -150,9 +133,6 @@ abts_suite *testfilecopy(abts_suite *suite) abts_run_test(suite, append_nonexist, NULL); abts_run_test(suite, append_exist, NULL); - abts_run_test(suite, link_existing, NULL); - abts_run_test(suite, link_nonexisting, NULL); - return suite; } -- cgit v1.2.1