summaryrefslogtreecommitdiff
path: root/test/testfilecopy.c
diff options
context:
space:
mode:
authorThomas J. Donovan <tdonovan@apache.org>2008-07-25 03:21:54 +0000
committerThomas J. Donovan <tdonovan@apache.org>2008-07-25 03:21:54 +0000
commit544f55179556769ad7570b983519d17382b61764 (patch)
treefded4cd25cd19418ac1f314d7841657f230db218 /test/testfilecopy.c
parente8957cc62709498baced8306437be67a91c46303 (diff)
downloadapr-544f55179556769ad7570b983519d17382b61764.tar.gz
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
Diffstat (limited to 'test/testfilecopy.c')
-rw-r--r--test/testfilecopy.c20
1 files changed, 0 insertions, 20 deletions
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;
}