Boost logo

Boost :

From: Victor A. Wagner Jr. (vawjr_at_[hidden])
Date: 2005-05-15 16:17:09


At 03:23 2005-05-15, David Abrahams wrote:
>Douglas Gregor <doug.gregor_at_[hidden]> writes:
>
> > parameter (vc-7_1, borland-5_6_4, cw-8_3, msvc-stlport, vc7, msvc,
>
>Hopefully most of these are fixed now.
>
> > A few failures:
> >
> > python
> > (vc-8_0
> > gcc-3_3-darwin
> > dmc-stlport
>
>These are all configuration errors. The testers should check their
>configuration variables. Unfortunately I don't know how to see the
>commands they used to invoke bjam or their environment variables

PYTHON_ROOT=C:\Python24
PYTHON_VERSION=2.4

and as I commented previously, I cannot run args.py
C:\Projects\boost\libs\python\test>python args.py
running...
**********************************************************************
File "args.py", line 5, in __main__
Failed example:
     from args_ext import *
Exception raised:
     Traceback (most recent call last):
       File "C:\Python24\lib\doctest.py", line 1243, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__[0]>", line 1, in ?
         from args_ext import *
     ImportError: No module named args_ext

and on and on and on for many of the lines bounded by the """ ..... """
If I remove what appear to be comments, it runs fine

C:\Projects\boost\libs\python\test>python argsnocomments.py
running...
Done.

the entire contents, then, is:
C:\Projects\boost\libs\python\test>type argsnocomments.py
# Copyright David Abrahams 2004. Distributed under the Boost
# Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
def run(args = None):
     import sys
     import doctest

     if args is not None:
         sys.argv = args
     return doctest.testmod(sys.modules.get(__name__))

if __name__ == '__main__':
     print "running..."
     import sys
     status = run()[0]
     if (status == 0): print "Done."
     sys.exit(status)

> > msvc-stlport,
> > vc7
>
>Not sure what's up with these; I'll look into it.
>
>--
>Dave Abrahams
>Boost Consulting
>www.boost-consulting.com
>
>_______________________________________________
>Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Victor A. Wagner Jr. http://rudbek.com
The five most dangerous words in the English language:
               "There oughta be a law"


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk