summaryrefslogtreecommitdiff
path: root/tests/path/core.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/path/core.c')
-rw-r--r--tests/path/core.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/path/core.c b/tests/path/core.c
index 48b518c8d..ebf604792 100644
--- a/tests/path/core.c
+++ b/tests/path/core.c
@@ -1,5 +1,6 @@
#include "clar_libgit2.h"
#include "path.h"
+#include "repo_path.h"
static void test_make_relative(
const char *expected_path,
@@ -44,10 +45,10 @@ void test_path_core__make_relative(void)
test_make_relative("/path/to/foo.c", "/path/to/foo.c", "d:/path/to", GIT_ENOTFOUND);
test_make_relative("d:/path/to/foo.c", "d:/path/to/foo.c", "/path/to", GIT_ENOTFOUND);
-
+
test_make_relative("/path/to/foo.c", "/path/to/foo.c", "not-a-rooted-path", GIT_ENOTFOUND);
test_make_relative("not-a-rooted-path", "not-a-rooted-path", "/path/to", GIT_ENOTFOUND);
-
+
test_make_relative("/path", "/path", "pathtofoo", GIT_ENOTFOUND);
test_make_relative("path", "path", "pathtofoo", GIT_ENOTFOUND);
}