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):