Commit 0847dff5cd6522dbef29958cbafa7a56f409e82a

Vicent Marti 2010-12-22T21:57:48

Fix test builds in Win32 Use forward slashes for the TEST_RESOURCES definition. libgit2 uses only forward slashes. Signed-off-by: Vicent Marti <tanoku@gmail.com>

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/wscript b/wscript
index 104de86..41d3d30 100644
--- a/wscript
+++ b/wscript
@@ -144,7 +144,7 @@ def build_tests(bld):
         return
 
     directory = bld.path
-    resources_path = directory.find_node('tests/resources/').abspath()
+    resources_path = directory.find_node('tests/resources/').abspath().replace('\\', '/')
 
     # Common object with the Test library methods
     bld.objects(source=['tests/test_helpers.c', 'tests/test_lib.c'], includes=['src', 'tests'], target='test_helper')