Boost logo

Boost-Commit :

From: dave_at_[hidden]
Date: 2007-12-08 16:17:02


Author: dave
Date: 2007-12-08 16:17:02 EST (Sat, 08 Dec 2007)
New Revision: 41909
URL: http://svn.boost.org/trac/boost/changeset/41909

Log:
fix for windows paths
Text files modified:
   branches/bitten/tools/regression/src/bitten_reports.py | 5 +++--
   1 files changed, 3 insertions(+), 2 deletions(-)

Modified: branches/bitten/tools/regression/src/bitten_reports.py
==============================================================================
--- branches/bitten/tools/regression/src/bitten_reports.py (original)
+++ branches/bitten/tools/regression/src/bitten_reports.py 2007-12-08 16:17:02 EST (Sat, 08 Dec 2007)
@@ -29,8 +29,9 @@
 of a hack: this information should be derived in a more principled manner, and
 not from the target name."""
     l = []
- target_name.replace('\\','/')
- p = target_name.split('/')
+ p = target_name.replace('\\','/').split('/')
+ if not 'libs' in p:
+ print '??? target name has no libs:', p
     for x in p[p.index('libs')+1:]:
         if x.endswith('.test'):
             return '/'.join(l), x[:-5]


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk