Opened 14 years ago
Closed 14 years ago
#2163 closed Bugs (fixed)
regression.py can't find bjam.exe under CygWin
Reported by: | 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.
Note:
See TracTickets
for help on using tickets.
(In [50115]) Use .exe extensions on cygwin. Fixes #2163