Opened 14 years ago

Closed 14 years ago

#2163 closed Bugs (fixed)

regression.py can't find bjam.exe under CygWin

Reported by: jim@… Owned by: René Rivera
Milestone: Boost 1.36.0 Component: Regression Testing USE GITHUB
Version: Boost 1.35.0 Severity: Showstopper
Keywords: CygWin regression.py Cc:

Description

regression.py won't run under cygwin without this change in line 192:

if sys.platform in ['win32', 'cygwin']:

Was:

if sys.platform == 'win32':

It's right to consider cygwin to be unix, but cygwin names its executables with a .exe extension.

Change History (1)

comment:1 by Steven Watanabe, 14 years ago

Resolution: fixed
Status: newclosed

(In [50115]) Use .exe extensions on cygwin. Fixes #2163

Note: See TracTickets for help on using tickets.