]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Make sure that our tests expect the windows path separator as needed
authorNick Mathewson <nickm@torproject.org>
Thu, 30 Jun 2016 22:26:44 +0000 (18:26 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 30 Jun 2016 22:26:44 +0000 (18:26 -0400)
src/test/test_dir.c

index 9b6d5ff9e01dda8e229d41f26b69cb038f353f7b..a97ac7cca0736b04fec645382d9eac4c2a4896bc 100644 (file)
@@ -4948,7 +4948,7 @@ test_dir_populate_dump_desc_fifo(void *data)
   fname =
     "unparseable-desc."
     "DF0981323F3A70D02B55AB54B44B04F287D72F7B72F242E85C8CB0EDA8854A99";
-  tor_asprintf(&expected_filename, "%s/%s", dirname, fname);
+  tor_asprintf(&expected_filename, "%s%s%s", dirname, PATH_SEPARATOR, fname);
   file_content = tor_strdup("hanc culpam maiorem an illam dicam?");
   file_content_len = strlen(file_content);
   file_stat.st_mtime = 123456;
@@ -4964,7 +4964,7 @@ test_dir_populate_dump_desc_fifo(void *data)
   fname =
     "unparseable-desc."
     "0786C7173447B7FB033FFCA2FC47C3CF71C30DD47CA8236D3FC7FF35853271C6";
-  tor_asprintf(&expected_filename, "%s/%s", dirname, fname);
+  tor_asprintf(&expected_filename, "%s%s%s", dirname, PATH_SEPARATOR, fname);
   file_content = tor_strdup("hanc culpam maiorem an illam dicam?");
   file_content_len = strlen(file_content);
   file_stat.st_mtime = 789012;