From 7b848defc704cc1fbb47a16b23727583c14b804d Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Sat, 6 Apr 2013 16:41:08 +0200 Subject: Support /xxx/yyy as an absolute path with Win32 Because win32 code doesn't just run on windows, wine runs with unix style paths. --- common/tests/test-path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/tests') diff --git a/common/tests/test-path.c b/common/tests/test-path.c index 8263d1f..def4199 100644 --- a/common/tests/test-path.c +++ b/common/tests/test-path.c @@ -174,7 +174,7 @@ test_absolute (CuTest *tc) #else /* OS_WIN32 */ CuAssertTrue (tc, p11_path_absolute ("C:\\home")); CuAssertTrue (tc, !p11_path_absolute ("home")); - CuAssertTrue (tc, !p11_path_absolute ("/home")); + CuAssertTrue (tc, p11_path_absolute ("/home")); #endif } -- cgit v1.1