chiark / gitweb /
Prep v239: Mask unneedd tests test_copy_atomic() and assert_equal_fd()
authorSven Eden <yamakuzure@gmx.net>
Thu, 23 Aug 2018 16:39:52 +0000 (18:39 +0200)
committerSven Eden <yamakuzure@gmx.net>
Fri, 24 Aug 2018 14:47:08 +0000 (16:47 +0200)
src/test/test-copy.c
src/test/test-fd-util.c

index b3dfedd36c98c77f308319e28a8197466d313073..1127ace44aeafb06498b946473765fa98ddfa818 100644 (file)
@@ -237,6 +237,7 @@ static void test_copy_bytes_regular_file(const char *src, bool try_reflink, uint
         unlink(fn3);
 }
 
+#if 0 /// UNNEEDED by elogind
 static void test_copy_atomic(void) {
         _cleanup_(rm_rf_physical_and_freep) char *p = NULL;
         const char *q;
@@ -254,6 +255,7 @@ static void test_copy_atomic(void) {
 
         assert_se(copy_file_atomic("/etc/fstab", q, 0644, 0, COPY_REPLACE) >= 0);
 }
+#endif // 0
 
 int main(int argc, char *argv[]) {
         log_set_max_level(LOG_DEBUG);
@@ -270,7 +272,9 @@ int main(int argc, char *argv[]) {
         test_copy_bytes_regular_file(argv[0], true, 1000);
         test_copy_bytes_regular_file(argv[0], false, 32000); /* larger than copy buffer size */
         test_copy_bytes_regular_file(argv[0], true, 32000);
+#if 0 /// UNNEEDED by elogind
         test_copy_atomic();
+#endif // 0
 
         return 0;
 }
index 4328442ade62c5dc0af2acb6e36e31c261577a03..638fe3db47b0ea577861a97b45d4bdcdd3665858 100644 (file)
@@ -225,6 +225,7 @@ static void test_rearrange_stdio(void) {
         }
 }
 
+#if 0 /// UNNEEDED by elogind
 static void assert_equal_fd(int fd1, int fd2) {
 
         for (;;) {
@@ -246,7 +247,6 @@ static void assert_equal_fd(int fd1, int fd2) {
         }
 }
 
-#if 0 /// UNNEEDED by elogind
 static void test_fd_duplicate_data_fd(void) {
         _cleanup_close_ int fd1 = -1, fd2 = -1;
         _cleanup_(close_pairp) int sfd[2] = { -1, -1 };