From: Nick Mathewson Date: Thu, 30 Jun 2016 22:26:44 +0000 (-0400) Subject: Make sure that our tests expect the windows path separator as needed X-Git-Tag: tor-0.2.9.1-alpha~89 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64ee7bcd0c8e154269145b626a7cd56b9d6264a1;p=thirdparty%2Ftor.git Make sure that our tests expect the windows path separator as needed --- diff --git a/src/test/test_dir.c b/src/test/test_dir.c index 9b6d5ff9e0..a97ac7cca0 100644 --- a/src/test/test_dir.c +++ b/src/test/test_dir.c @@ -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;