| Index: tools/testrunner/local/utils.py
|
| diff --git a/tools/testrunner/local/utils.py b/tools/testrunner/local/utils.py
|
| index b7caa121f3a603cc8a65d321546af9b2420905a4..61ee7dac67bed1f6699b5757ceeb0eab4d8ee12a 100644
|
| --- a/tools/testrunner/local/utils.py
|
| +++ b/tools/testrunner/local/utils.py
|
| @@ -65,7 +65,7 @@ def GuessOS():
|
| elif system == 'Windows' or system == 'Microsoft':
|
| # On Windows Vista platform.system() can return 'Microsoft' with some
|
| # versions of Python, see http://bugs.python.org/issue1082
|
| - return 'win32'
|
| + return 'windows'
|
| elif system == 'FreeBSD':
|
| return 'freebsd'
|
| elif system == 'OpenBSD':
|
| @@ -105,4 +105,4 @@ def GuessWordsize():
|
|
|
|
|
| def IsWindows():
|
| - return GuessOS() == 'win32'
|
| + return GuessOS() == 'windows'
|
|
|