Boost logo

Boost Testing :

From: Roland Schwarz (roland.schwarz_at_[hidden])
Date: 2007-02-10 12:55:25


Roland Schwarz wrote:
> The boosttrapping appears to be broken on cygwin.

The attached patch fixes the problem.

If there are no objections, I will apply it to
HEAD and RC_1_34_0

Roland


? regression.py.diff
Index: regression.py
===================================================================
RCS file: /cvsroot/boost/boost/tools/regression/xsl_reports/runner/regression.py,v
retrieving revision 1.63.2.13
diff -u -r1.63.2.13 regression.py
--- regression.py 2 Feb 2007 06:45:52 -0000 1.63.2.13
+++ regression.py 10 Feb 2007 17:50:30 -0000
@@ -55,6 +55,13 @@
 
     process_jam_log[ 'default_toolset' ] = default_toolset
     patch_boost_name = 'patch_boost.bat'
+elif sys.platform == 'cygwin':
+ bjam[ 'name' ] = 'bjam.exe'
+ bjam[ 'build_cmd' ] = lambda toolset, v2: bjam_build_script_cmd( './build.sh %s' % toolset )
+ bjam[ 'is_supported_toolset' ] = lambda x: x in [ 'gcc', 'gcc-nocygwin' ]
+ process_jam_log[ 'name' ] = 'process_jam_log.exe'
+ process_jam_log[ 'default_toolset' ] = lambda x: 'gcc'
+ patch_boost_name = 'patch_boost'
 else:
     bjam[ 'name' ] = 'bjam'
     bjam[ 'build_cmd' ] = lambda toolset, v2: bjam_build_script_cmd( './build.sh %s' % toolset )


Boost-testing list run by mbergal at meta-comm.com