Revision f230a1cf deps/v8/tools/testrunner/local/utils.py

View differences:

deps/v8/tools/testrunner/local/utils.py
65 65
  elif system == 'Windows' or system == 'Microsoft':
66 66
    # On Windows Vista platform.system() can return 'Microsoft' with some
67 67
    # versions of Python, see http://bugs.python.org/issue1082
68
    return 'win32'
68
    return 'windows'
69 69
  elif system == 'FreeBSD':
70 70
    return 'freebsd'
71 71
  elif system == 'OpenBSD':
......
105 105

  
106 106

  
107 107
def IsWindows():
108
  return GuessOS() == 'win32'
108
  return GuessOS() == 'windows'

Also available in: Unified diff