hgkw/__init__.py
author Bryan O'Sullivan <bryano@fb.com>
Tue, 11 Dec 2012 15:13:23 -0800
branchstable
changeset 1171 5af439678b99
parent 0 41c7e55cd9e9
permissions -rw-r--r--
run-tests: support running tests in parallel on windows Previously, we used os.spawnvp, which doesn't exist on Windows, and isn't needed anyway (the command line begins with an absolute path). We also need a slightly more convoluted way to wait for processes without specifying an order on Windows, as it lacks os.wait. [ original upstream message ]