]> granicus.if.org Git - transmission/commitdiff
continuation of previous commit to find out why Jenkins doesn't like the new rename...
authorJordan Lee <jordan@transmissionbt.com>
Wed, 23 Jan 2013 20:59:20 +0000 (20:59 +0000)
committerJordan Lee <jordan@transmissionbt.com>
Wed, 23 Jan 2013 20:59:20 +0000 (20:59 +0000)
libtransmission/rename-test.c

index 0e732816de94a826e1c34eda5f4aa66089511697..29b02774b5be944491c0aeb480c8687fe8840c10 100644 (file)
@@ -461,15 +461,19 @@ create_zero_torrent_partial_contents (const char * top)
   char * path;
   char buf[32];
 
+fprintf (stderr, "top %s exists %d\n", top, (int)tr_fileExists(top,NULL));
+
 errno = 0;
   path = tr_buildPath (top, "files-filled-with-zeroes", NULL);
   tr_mkdirp (path, 0700);
+fprintf (stderr, "%s:%d %s\n", __FILE__, __LINE__, path);
+fprintf (stderr, "errno is %d (%s)\n", errno, tr_strerror (errno));
   tr_free (path);
 
   n = 512;
   tr_snprintf (buf, sizeof(buf), "%d", n);
   path = tr_buildPath (top, "files-filled-with-zeroes", buf, NULL);
-fprintf (stderr, "%s\n", path);
+fprintf (stderr, "%s:%d %s\n", __FILE__, __LINE__, path);
 fprintf (stderr, "errno is %d (%s)\n", errno, tr_strerror (errno));
   fp = fopen (path, "wb+");
   for (i=0; i<n; ++i)