Opened 13 years ago
Closed 13 years ago
#3101 closed Bugs (fixed)
[interprocess] regression test failures on VC10 beta 1
Reported by: | Owned by: | Ion Gaztañaga | |
---|---|---|---|
Milestone: | Boost 1.40.0 | Component: | interprocess |
Version: | Boost Development Trunk | Severity: | Problem |
Keywords: | Cc: |
Description
The doc_complex_map (http://tinyurl.com/qf9zvy) and flat_tree_test (http://tinyurl.com/pszhmm) tests are failing in VC10 beta 1 with the same issue as described @ https://svn.boost.org/trac/boost/ticket/3076.
When the tests are run, the call to std::copy at line 1753 of interprocess\containers\container\vector.hpp is made with the 3rd parameter ('start') set to NULL, which triggers the error.
in addition, the string_test (http://tinyurl.com/ob2sq9) is also failing, but i haven't looked into that failure.
Change History (2)
comment:1 by , 13 years ago
comment:2 by , 13 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
The trunk tests are all green with VC10 beta 2 now, so i'll close this.
It looks like the string_test failure is down to the BOOST_HAS_RVALUE_REFS flag (or lack thereof).
The VC config header defines BOOST_NO_RVALUE_REFERENCES for versions less than VC10, but never defines BOOST_HAS_RVALUE_REFS, and that causes Interprocess to go down the wrong code path.
I'm not sure if this is an interprocess issue or a config issue though.