Commit graph

1261 commits

Author SHA1 Message Date
Frank Mori Hess
468f673c24 Merging Signals2 to release branch.
[SVN r51710]
2009-03-11 17:51:08 +00:00
Eric Niebler
6ae7225c9b Merged revisions 51169,51271 via svnmerge from
https://svn.boost.org/svn/boost/trunk

........
  r51169 | eric_niebler | 2009-02-09 16:50:16 -0800 (Mon, 09 Feb 2009) | 1 line
  
  eliminate shadow warnings on gcc for nested FOREACH loops
........
  r51271 | eric_niebler | 2009-02-16 09:50:31 -0800 (Mon, 16 Feb 2009) | 1 line
  
  mark up foreach failures on borland-6.1
........


[SVN r51272]
2009-02-16 18:03:41 +00:00
Alexander Nasonov
b17f699626 Merge ScopeExit from trunk.
[SVN r50713]
2009-01-21 20:36:00 +00:00
Alexander Nasonov
4ea9f6b765 Merge ScopeExit from trunk.
[SVN r50712]
2009-01-21 20:33:17 +00:00
Beman Dawes
865aa4c7b8 status: merge from trunk
[SVN r50276]
2008-12-15 13:04:37 +00:00
Niels Dekker
4eaf99743f Added test-suite "utility/swap" to /release/status/Jamfile.v2, hoping to see it at www.boost.org/development/tests/release/developer
[SVN r49831]
2008-11-19 09:30:52 +00:00
Joseph Gauterin
f9c1f05eb5 Merged utility\swap failures to release branch.
[SVN r49764]
2008-11-15 01:17:35 +00:00
Marshall Clow
eb402edbe3 Merged revisions 43283,43992,44388 via svnmerge from
https://svn.boost.org/svn/boost/trunk

........
  r43283 | bemandawes | 2008-02-16 18:01:32 -0800 (Sat, 16 Feb 2008) | 1 line
  
  Show output of example program
........
  r43992 | marshall | 2008-04-01 18:42:32 -0700 (Tue, 01 Apr 2008) | 1 line
  
  Replaced all occurrences of non-ASCII copyright symbol with '(c)' for people using non-ASCII code pages
........
  r44388 | grafik | 2008-04-13 16:55:58 -0700 (Sun, 13 Apr 2008) | 1 line
  
  Move tokenizer tests into canonical test subdir structure.
........


[SVN r49216]
2008-10-09 18:05:35 +00:00
Eric Niebler
38324ca742 merge proto from trunk to release branch
[SVN r48800]
2008-09-16 18:25:52 +00:00
John Maddock
13f4970e36 Fix toolset name.
[SVN r47964]
2008-08-04 09:33:17 +00:00
Jurko Gospodnetić
597a9b74c8 Committed a status/explicit-failures-markup.xml patch by Boris Gubenko.
[SVN r47828]
2008-07-26 08:54:48 +00:00
John Maddock
59c1fb16c9 Mark up two more expected failures.
[SVN r47747]
2008-07-24 09:59:45 +00:00
Beman Dawes
9daf2e35ee Merge 47665 from trunk
[SVN r47686]
2008-07-22 14:17:55 +00:00
John Maddock
71a5646843 Add TR1/VC9 markup.
[SVN r47636]
2008-07-20 16:06:48 +00:00
Hartmut Kaiser
0959cafc02 Spirit: re-enabled testing of Spirit.Classic, fixed failing Spirit.Classic test cases, added missing file
[SVN r47602]
2008-07-19 16:48:42 +00:00
Beman Dawes
209552b9fd Merge trunk
[SVN r47440]
2008-07-15 11:52:40 +00:00
Emil Dotchevski
2ae5c7500e BOOST_NO_TYPEID support
exception/index.html redirection
Added Boost Exception to libraries.htm and maintainers.txt
Added Boost Exception to status/Jamfile.v2

[SVN r47010]
2008-07-02 22:01:55 +00:00
Daniel James
71b33e7350 Merge from trunk. Fix some inspect errors, try to avoid instantiating the
equality operators when not required, and some bookkeeping.

................
  r42539 | danieljames | 2008-01-06 17:48:11 +0000 (Sun, 06 Jan 2008) | 2 lines
  
  Add the unordered library to the maintainers list.
................
  r46579 | danieljames | 2008-06-21 16:32:11 +0100 (Sat, 21 Jun 2008) | 10 lines
  
  Define unordered containers' friend functions outside of the class.
  
  On some compilers, friend functions are being instantiated when the main class
  is explicitly instantiated. This is slightly problematic because the equality
  functions (which are an extension) put extra requirements on the types used. So
  I'm going to try defining the functions outside of the class, in the hope that
  they won't get instantiated. If someone wants non-member functions to be
  instantiated, I think it's reasonable to expect them to explicitly instantiate
  them, especially as compilers don't seem to be consistent about this.
................
  r46587 | danieljames | 2008-06-21 20:58:39 +0100 (Sat, 21 Jun 2008) | 8 lines
  
  Get the test to pass when pair's default constructor creates two instances of
  the member classes.
  
  With some standard libraries I was getting two copies of the object after
  creating a default pair, probably because it was creating an instance for its
  default parameter. So only test after creating the pair object - since it isn't
  our concern how many instances that creates.
................
  r46588 | danieljames | 2008-06-21 21:11:26 +0100 (Sat, 21 Jun 2008) | 1 line
  
  Markup an expected failure for unordered.
................
  r46594 | danieljames | 2008-06-21 23:02:15 +0100 (Sat, 21 Jun 2008) | 19 lines
  
  Merge inspect fixes for the unordered library.
  
  Merged revisions 46470-46592 via svnmerge from 
  https://svn.boost.org/svn/boost/branches/unordered/trunk
  
  ................
    r46589 | danieljames | 2008-06-21 21:37:42 +0100 (Sat, 21 Jun 2008) | 2 lines
    
    Fix some inspect errors (tabs and missing copyright/license).
  ................
    r46591 | danieljames | 2008-06-21 21:47:51 +0100 (Sat, 21 Jun 2008) | 1 line
    
    Move memory.hpp into the helpers subdirectory.
  ................
    r46592 | danieljames | 2008-06-21 22:08:53 +0100 (Sat, 21 Jun 2008) | 1 line
    
    Prevent inspect errors for unnamed namespaces in some of the test header files.
  ................
................
  r46607 | danieljames | 2008-06-22 14:54:45 +0100 (Sun, 22 Jun 2008) | 9 lines
  
  Extract the hash and equality functions from hash_table_data_*.
  
  As these are extensions and add extra requirements to the container elements,
  they shouldn't be part of hash_table_data_* so that they won't get instantiated
  if an unordered container is explicitly instantiated.
  
  Merged revisions 46594-46604 via svnmerge from 
  https://svn.boost.org/svn/boost/branches/unordered/trunk
................
  r46608 | danieljames | 2008-06-22 16:00:02 +0100 (Sun, 22 Jun 2008) | 5 lines
  
  Remove the svnmerge integration information for the unordered branch.
  
  Now that the unordered library is moving towards release, the main development
  version is in trunk. New features will be developed on a new branch.
................


[SVN r46629]
2008-06-23 17:44:53 +00:00
Steven Watanabe
5d0d6f4222 Add to release branch
[SVN r46545]
2008-06-20 04:37:32 +00:00
Eric Niebler
7b30e66731 mark-up foreach failures
[SVN r46543]
2008-06-20 03:56:50 +00:00
Eric Niebler
bf57c25cac integrate accumulators
[SVN r46542]
2008-06-20 03:47:42 +00:00
Daniel James
0d93c89ef5 Add Boost.Unordered to the regression tests.
Merged revisions 42536 via svnmerge from 
https://svn.boost.org/svn/boost/trunk

........
  r42536 | danieljames | 2008-01-06 17:40:32 +0000 (Sun, 06 Jan 2008) | 1 line
  
  Add Boost.Unordered to the regression tests.
........


[SVN r46495]
2008-06-18 21:41:22 +00:00
Beman Dawes
d40542107e Apply changeset 43864, fixing #1717
[SVN r43871]
2008-03-26 17:07:04 +00:00
Douglas Gregor
d51bda909e Markup VC9 failures
[SVN r43729]
2008-03-19 17:16:03 +00:00
Tobias Schwinger
787bf345ac stages trunk version for boost 1.35
[SVN r43684]
2008-03-17 21:42:41 +00:00
Boris Gubenko
690ebe2b7e merged marking for gcc-3.4.6_linux_ia64 toolset to release branch
[SVN r42725]
2008-01-13 16:26:30 +00:00
Beman Dawes
25f377f401 Merge latest from trunk at 42112
[SVN r42113]
2007-12-16 22:57:24 +00:00
Beman Dawes
fbcda05584 Merge trunk at 42025
[SVN r42033]
2007-12-14 15:30:59 +00:00
Daniel James
7226e2ce2b Merge in hash failure markup from trunk.
[SVN r41579]
2007-12-02 13:15:24 +00:00
Beman Dawes
2898ec0022 Merge from trunk: remove hp_cxx-71_006_tru64 as required.
[SVN r41379]
2007-11-25 19:57:41 +00:00
Beman Dawes
a5270c8aa8 Full merge from trunk at revision 41356 of entire boost-root tree.
[SVN r41375]
2007-11-25 19:37:23 +00:00
Beman Dawes
6718108391 Merge from trunk at 41327
[SVN r41329]
2007-11-24 13:20:13 +00:00
Beman Dawes
42f0fea0a3 Merged from trunk at 41158, with libraries not merged yet commented out
[SVN r41159]
2007-11-16 22:22:42 +00:00
Thomas Witt
12d1e41722 Add acc to list of required toolsets.
[SVN r37736]
2007-05-22 03:49:43 +00:00
Fernando Cacciola
5e27b027d0 none_test failures in VC6.5/7.0 marked as expected
[SVN r37461]
2007-04-17 12:27:47 +00:00
Fernando Cacciola
e2d52bfbb5 Mark NEW none_test as expected failure in borland-5.8.2
[SVN r37451]
2007-04-16 12:07:45 +00:00
Roland Schwarz
78f951e803 Expectation to fail removed, since the tests are working now.
[SVN r37381]
2007-04-06 11:53:24 +00:00
Jeff Garland
4794d84de1 Update for new Borland failure
[SVN r37317]
2007-03-29 16:28:01 +00:00
Boris Gubenko
7e3bd5492f mark some tests for HP-UX
[SVN r37309]
2007-03-28 12:31:31 +00:00
Fernando Cacciola
c49067107d update: Failures in optional_test with msvc-6.5/7.0 now marked as expected
[SVN r37303]
2007-03-27 16:08:52 +00:00
Fernando Cacciola
4d1c23e49a Failures in optional_test with msvc-6.5/7.0 now marked as expected
[SVN r37302]
2007-03-27 16:07:27 +00:00
Vladimir Prus
1b9cfa3d21 Merge: some markup
[SVN r37196]
2007-03-15 20:30:45 +00:00
John Maddock
c257ed09e1 Last regex markup for this release.
[SVN r37164]
2007-03-10 09:53:51 +00:00
John Maddock
e0c4c0c6f7 Mark up remaining failures, with explanation.
[SVN r37136]
2007-03-04 09:59:47 +00:00
John Maddock
bf787430c9 Patches for HP aCC and Compaq tru64
[SVN r37106]
2007-02-27 10:13:14 +00:00
Roland Schwarz
ba653f51a3 Marked python expected to fail for gcc-cygwin-3.4.4.
[SVN r37052]
2007-02-24 11:40:39 +00:00
Jeff Garland
b59eb89723 correct the name of failed tests for date-time so they are marked correctly
[SVN r37040]
2007-02-23 01:53:44 +00:00
John Maddock
ec6a1f92a7 Ooops, get toolset name right.
[SVN r37028]
2007-02-21 17:44:37 +00:00
Thomas Witt
93ac770856 Add explicit failure on acc as reuested by Boris Gubenko.
[SVN r37014]
2007-02-20 08:11:48 +00:00
Thomas Witt
b5291c35a1 Add explicit failure for zip_iterator_test on msvc 6.5 STLport 4.
[SVN r37013]
2007-02-20 08:05:17 +00:00