From 4eea3e45bd6c60d880ea68722be7dead9041407a Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Fri, 26 Nov 2010 04:16:40 +0100 Subject: [PATCH] `make test` somewhat works --- TODO.win32 | 2 +- tools/test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TODO.win32 b/TODO.win32 index 190865d3e6b..53a04ff2f87 100644 --- a/TODO.win32 +++ b/TODO.win32 @@ -15,7 +15,7 @@ that relays everything to an internal socket? Also verify writeError and isStdoutBlocking correctness. -- Make `make test` work, think about `make install` +- Think about `make install` - Find a solution for fs.symlink / fs.lstat / fs.chown Windows has different symlink types: file symlinks (vista+), directory symlinks (vista+), junction points (xp+) diff --git a/tools/test.py b/tools/test.py index f8740e86bbf..9a66e627a86 100755 --- a/tools/test.py +++ b/tools/test.py @@ -669,7 +669,7 @@ class Context(object): name = 'build/default/node' if utils.IsWindows() and not name.endswith('.exe'): - name = name + '.exe' + name = os.path.abspath(name + '.exe') return name def GetVmCommand(self, testcase, mode):