Commit Graph

250 Commits

Author SHA1 Message Date
Jonathan Turkanis
9cc19290e6 changes from iostreams_dev not merged by svnmerge for some reason; better error reporting for file_offset_64bit_test.cpp; added 'std::' all over the place for Intel on Linux and Darwin; commented out stream_state_test.cpp because it seems to be a test for the standard library, and it is not clear that the standard requires that the test pass
[SVN r42440]
2008-01-03 19:10:48 +00:00
Jonathan Turkanis
ce094a70ca ported changes to large_file_test.cpp from branches/iostreams_dev revisions 42376-42380:
- added optimization for win32 (excpet Borland 5.8.2) using mapped files
    - replaced SetFilePointerEx with SetFilePointer
    - replaced BOOST_CHECK_MESSAGE with BOOST_REQUIRE_MESSAGE in test for file existence
    - changed file attributes passed to CreateFile; previous flags were the result of a haphazard attempt to speed up execution
    - added docs


[SVN r42381]
2007-12-30 22:35:46 +00:00
Jonathan Turkanis
9dccd2482b ported changes from branches/iostreams_dev revisions 42343-42356
[SVN r42357]
2007-12-30 04:19:38 +00:00
Jonathan Turkanis
1753faf9e0 ported changes from branches/iostreams_dev revisions 42306-42342: reworking of low-level file access to address #824, plus rigorous tests for large seeks
[SVN r42343]
2007-12-29 19:50:22 +00:00
K. Noel Belcourt
e94024b747 Add missing iostreams files from iostreams_dev branch.
Re-enable these two tests.



[SVN r42311]
2007-12-27 00:37:52 +00:00
K. Noel Belcourt
91708aa511 Comment out these two tests
[ test-iostreams stream_offset_32bit_test.cpp ]
[ test-iostreams stream_offset_64bit_test.cpp ]

since, apparently, these source files didn't get 
added.



[SVN r42310]
2007-12-26 22:48:28 +00:00
Jonathan Turkanis
8c65fa7d15 ported changes from branches/iostreams_dev revisions 42265-42306
[SVN r42307]
2007-12-26 05:45:15 +00:00
Jonathan Turkanis
49ba093a28 ported changes from branches/iostreams_dev revisions 42144-42265
[SVN r42266]
2007-12-24 00:27:12 +00:00
Jonathan Turkanis
4f85a131de I. Changed signature and specification of boost::iostreams::close(),
and made corresponding changes throughout the iostreams library.
   New spec is:
   
   template<typename T>
   void close(T& t);

     Convenience function for closing a device; calls close(t, in) and 
     close(t, out).

   template<typename T>
   void close(T& t, openmode which);

   template<typename T, typename Sink>
   void close(T& t, Sink& snk, openmode which);

     These two functions should only be called by the library implementation
     or by advanced users. The openmode parameter must always equal in or 
     out, never in | out.

     There are three cases:

     1. If T is not closable and which == out, calls boost::iostreams::flush

     2. If T operates on a single sequence, and is NOT a dual-use filter:

        a. If which == in and the mode of T is convertible to input but
           not to output, calls t.close() (or t.close(snk))

        b. If which == out and the mode of T is not convertible to input or
           is convertible to input and to output, calls t.close() 
           (or t.close(snk))

        The effect of a. and b. is that for any T in this category, 
        close() is called exactly once.

     3. If T operates on two sequences or is a dual-use filter, calls
        t.close(which) (or t.close(snk, which))

     If multiple operations that might throw must be called in the course
     of closing a filter or device, all of the operations are attempted
     and the first exception thrown by any of the operations is rethrown

  The new test close_test.cpp contains 95 checks verifying that the operation
  behaves as sepcified.

  This affects the following files:

    chain.hpp
    close.hpp
    code_converter.hpp
    combine.hpp
    compose.hpp
    copy.hpp
    detail/adapter/basic_adapter.hpp [removed]
    detail/adapter/device_adapter.hpp [new]
    detail/adapter/direct_adapter.hpp
    detail/adapter/filter_adapter.hpp [new]
    detail/adapter/mode_adapter.hpp
    detail/broken_overload_resolution/stream_buffer.hpp
    detail/closer.hpp [removed]
    detail/config/limits.hpp
    detail/execute.hpp [new]
    detail/functional.hpp [new]
    detail/streambuf/direct_streambuf.hpp
    detail/streambuf/indirect_streambuf.hpp
    detail/streambuf/linked_streambuf.hpp
    detail/vc6/close.hpp
    device/null.hpp
    filter/aggregate.hpp
    filter/bzip2.hpp
    filter/gzip.hpp
    filter/line.hpp
    filter/newline.hpp
    filter/symmetric.hpp
    filter/test.hpp
    invert.hpp
    restrict.hpp
    tee.hpp
    example/finite_state_filter.hpp
    test/Jamfile.v2
    test/close_test.cpp [new]
    test/code_converter_test.cpp
    test/execute_test.cpp [new]
    test/operation_sequence_test.cpp [new]

II. When exceptions are caught and ignored, we now use catch (...)
    uniformly instead of catch (std::exception&). This affects the 
    following files:

    stream_buffer.hpp
    src/mapped_file.cpp

III. Unnecessary dependence on Boost.Range has been eliminated. This
     affects the following files:

    detail/is_iterator_range.hpp
    detail/resolve.hpp
    traits.hpp
    test/Jamfile.v2
    test/filtering_stream_test.cpp
    test/offset_test.cpp
    test/seek_test.hpp
    test/seekable_filter_test.cpp
    test/sequence_test.cpp [new]
    test/wide_stream_test.cpp

IV. There are several fixes to the documentation. This affects the
    following files:

    doc/classes/symmetric_filter.html
    doc/guide/concepts.html
    doc/guide/modes.html
    doc/tutorial/container_device.html [serious error in algorithm]
    doc/tutorial/dictionary_filters.html [unused member variable]
    doc/tutorial/multichar_filters.html

V. Other changes include:

    stream.hpp [missing include directive]
    example/container_device.hpp [serious error in algorithm]
    example/container_device_example.cpp [outdated naming]
    example/container_sink_example.cpp [outdated naming]
    example/container_source_example.cpp [outdated naming]
    example/dictionary_filter.hpp [unused member variable]
    test/compose_test.cpp [added comments]
    test/example_test.cpp [reformatted]

[SVN r42047]
2007-12-14 19:30:07 +00:00
Vladimir Prus
000213c327 Remove V1 Jamfiles
[SVN r38516]
2007-08-08 19:02:26 +00:00
John Maddock
3f66947198 Added Kim Barrett's patches that merge the changes from 1.33.1 into cvs HEAD.
[SVN r37788]
2007-05-26 12:42:44 +00:00
Vladimir Prus
f0b005fa29 Do not use peek at source files, link to the library.
[SVN r37409]
2007-04-10 06:02:10 +00:00
Andreas Huber
5f19054216 Fixed license & copyright issues.
[SVN r36505]
2006-12-24 09:14:17 +00:00
Vladimir Prus
3d82d1a4e1 When parts of iostream lib are directly compiled into tests, without
any DLL created, we should not set BOOST_IOSTREAMS_DYN_LIB.


[SVN r36192]
2006-11-28 08:12:02 +00:00
Vladimir Prus
de8f315f3b Allow building of shared versions of some Boost.Test libraries.
Adjust tests to use always use static linking to Boost.Test, since
linking to the shared version requires test changes.

Patch from Juergen Hunold.


[SVN r35989]
2006-11-10 19:09:56 +00:00
John Maddock
4718f83c38 Added dll-export options.
[SVN r35647]
2006-10-17 12:52:11 +00:00
Vladimir Prus
e3d36e5735 Don't run compression tests when compression is not available. This
avoids false failures.


[SVN r33423]
2006-03-21 17:17:44 +00:00
Vladimir Prus
c2b853b970 Update Jamfile.v2
[SVN r32488]
2006-01-31 16:31:59 +00:00
Vladimir Prus
2326f0bb79 Update Jamfile.v2
[SVN r32487]
2006-01-31 16:28:07 +00:00
Dave Abrahams
73c36ee9ea Added missing import
[SVN r31391]
2005-10-19 18:14:58 +00:00
Jonathan Turkanis
44372b3d3b added tests for modified component access
[SVN r30656]
2005-08-24 23:39:02 +00:00
Jonathan Turkanis
b298e318e0 initial committment
[SVN r30655]
2005-08-24 23:38:03 +00:00
Jonathan Turkanis
1b7c3b4b21 removed debugging message
[SVN r30192]
2005-07-21 12:30:41 +00:00
Jonathan Turkanis
a8709e3555 renamed streambuf_facade, stream_facade and several filters
[SVN r30128]
2005-07-15 23:55:05 +00:00
Jonathan Turkanis
b6bafe7775 fixed whitespace
[SVN r30091]
2005-07-15 04:35:22 +00:00
Jonathan Turkanis
115f3d05d8 fixed size of 'large file'
[SVN r29914]
2005-07-07 02:48:34 +00:00
John Maddock
ec8f567b96 Change Jamfile to <runtime-link>
[SVN r29738]
2005-06-22 17:03:13 +00:00
Jonathan Turkanis
1b1a424a3e putback_test.hpp
[SVN r29689]
2005-06-19 20:47:37 +00:00
Jonathan Turkanis
8839a98d76 renamed toolset msvc-stlport --> vc-6_5-stlport
[SVN r29499]
2005-06-09 20:28:52 +00:00
Jonathan Turkanis
25b2d1c62f restored Codecvt template arg in test1; misc changes
[SVN r29434]
2005-06-05 08:18:38 +00:00
Jonathan Turkanis
ac8fea8327 removed source file_descriptor.cpp from code_converter_test.cpp
[SVN r29414]
2005-06-03 18:49:02 +00:00
Jonathan Turkanis
541c971f0f made includion of file_descriptor.cpp conditional on BOOST_XXX_NO_LIB
[SVN r29413]
2005-06-03 18:45:04 +00:00
Jonathan Turkanis
14170545a9 como workaround
[SVN r29412]
2005-06-03 18:32:15 +00:00
Jonathan Turkanis
08fd580038 RogueWave workaround
[SVN r29409]
2005-06-03 17:06:01 +00:00
Rene Rivera
f02ce12a57 system_failure.hpp; Fix syntax on #if check.
Jamfile; Add std::locale-support to finate_state_filter_test as it uses locales.


[SVN r29406]
2005-06-03 15:33:21 +00:00
Rene Rivera
6ecc9ef627 Don't use absolute paths for Jamfile imports. Other minor TAB, etc cleanups.
[SVN r29379]
2005-06-02 16:17:06 +00:00
Jonathan Turkanis
7be3a3d269 made includion of sompression tests conditional
[SVN r29356]
2005-06-01 23:44:25 +00:00
Jonathan Turkanis
004738dce1 removed second template arg to finite_state_filter
[SVN r29353]
2005-06-01 19:26:54 +00:00
Victor A. Wagner Jr.
88343953fd Changed - \r\r\n to \r\n so it works on VC-8_0
Deleted - apparently some trailing spaces


[SVN r29305]
2005-05-30 19:59:42 +00:00
Jonathan Turkanis
70e37cf520 ?
[SVN r29297]
2005-05-30 07:54:32 +00:00
Jonathan Turkanis
7eebbf9ccf replaced >= max with > max
[SVN r29296]
2005-05-30 07:52:39 +00:00
Jonathan Turkanis
331bdd80e6 switched from array_source to string_source
[SVN r29295]
2005-05-30 07:51:45 +00:00
Jonathan Turkanis
c592608662 renamed size --> new_file_size
[SVN r29294]
2005-05-30 07:50:11 +00:00
Jonathan Turkanis
0fce82ef4e added error directive for locale support
[SVN r29293]
2005-05-30 07:43:58 +00:00
Jonathan Turkanis
9e27a1d1bd RougeWave fix
[SVN r29292]
2005-05-30 07:42:56 +00:00
Jonathan Turkanis
254d733b04 Tru64 fix
[SVN r29275]
2005-05-30 00:53:14 +00:00
Jonathan Turkanis
c90045afe8 renamed restrict_test.cppoffset_test.cpp
[SVN r29227]
2005-05-26 09:23:46 +00:00
Jonathan Turkanis
b2388a01cf renamed inverse_test.cpp
[SVN r29226]
2005-05-26 09:23:19 +00:00
Jonathan Turkanis
e7737837cb added compose_test.cpp; renamed reverse_test.cpp and offset_test.cpp
[SVN r29225]
2005-05-26 09:22:32 +00:00
Jonathan Turkanis
8dbaaa8f4c added container_device tests
[SVN r29224]
2005-05-26 09:20:21 +00:00
Jonathan Turkanis
3022d98bc3 VC6 fix
[SVN r29223]
2005-05-26 09:05:55 +00:00
Jonathan Turkanis
952c3f7f51 removed iterator_range.hpp include
[SVN r29222]
2005-05-26 09:05:18 +00:00
Jonathan Turkanis
18f084a73e increase length of test strings
[SVN r29221]
2005-05-26 09:00:56 +00:00
Jonathan Turkanis
97030cce43 renamed reverse_test.cpp
[SVN r29220]
2005-05-26 09:00:04 +00:00
Jonathan Turkanis
8a5c7aa7b2 renamed offset_test.cpp
[SVN r29219]
2005-05-26 08:59:04 +00:00
Jonathan Turkanis
3e80d25490 initial commitment
[SVN r29218]
2005-05-26 08:58:38 +00:00
Jonathan Turkanis
0cc5562b26 updates to reflect changes to version 1 Jamfile
[SVN r29196]
2005-05-25 19:32:20 +00:00
Jonathan Turkanis
5d8a402dfa restored after accidental removal
[SVN r29195]
2005-05-25 19:29:11 +00:00
Jonathan Turkanis
509d6204eb added tee_device tests
[SVN r29133]
2005-05-21 20:25:30 +00:00
Jonathan Turkanis
1a99681947 removed debugging code
[SVN r29132]
2005-05-21 20:24:06 +00:00
Victor A. Wagner Jr.
11c27e6d92 Changed - \r\r\n to \r\n so vc8.0 can compile
[SVN r29093]
2005-05-20 04:18:01 +00:00
Jonathan Turkanis
6bcd9ddf17 renamed io_category
[SVN r29092]
2005-05-20 04:11:12 +00:00
Jonathan Turkanis
c1130811d5 renamed windows --> dos
[SVN r29087]
2005-05-20 02:42:11 +00:00
Jonathan Turkanis
ebe6cffa6e initial commitment
[SVN r29084]
2005-05-20 02:10:00 +00:00
Jonathan Turkanis
dcfa0e73fd uncommented problematic tests
[SVN r29066]
2005-05-19 16:28:25 +00:00
Jonathan Turkanis
15dbb85743 *** empty log message ***
[SVN r29045]
2005-05-19 00:45:12 +00:00
Jonathan Turkanis
dd9eda6098 Temporarily commented out tests which hang on Linux and Darwin
[SVN r29044]
2005-05-18 23:46:26 +00:00
Jonathan Turkanis
0ddf315018 moved finite_state_filter tests
[SVN r29023]
2005-05-18 04:06:08 +00:00
Jonathan Turkanis
6e0d8aad08 fixed relative includes
[SVN r29019]
2005-05-18 00:28:05 +00:00
Jonathan Turkanis
268c3c4cef moved example_test.cpp
[SVN r29016]
2005-05-18 00:21:45 +00:00
Jonathan Turkanis
202545e9a6 moved from example directory
[SVN r29015]
2005-05-18 00:15:27 +00:00
Jonathan Turkanis
c78ef6a4e7 renamed componment_type_test.cpp --> component_access_test.bpp
[SVN r29013]
2005-05-17 23:28:01 +00:00
Jonathan Turkanis
4f8d5ce85b renamed from component_type_test.cpp
[SVN r29011]
2005-05-17 23:01:27 +00:00
Jonathan Turkanis
bf0e2c1d6e renamed component_access_test.cpp
[SVN r29010]
2005-05-17 23:00:49 +00:00
Jonathan Turkanis
f573cef0b7 added example_test.cpp
[SVN r29008]
2005-05-17 22:44:38 +00:00
Jonathan Turkanis
87b5c78c54 uncommented symmetric filter and compression tests
[SVN r29005]
2005-05-17 22:02:52 +00:00
Jonathan Turkanis
1522d927ab switched from C strings to std::strings
[SVN r29004]
2005-05-17 22:02:03 +00:00
Jonathan Turkanis
0eacb16a0f swicthed from C strings to std::strings
[SVN r29003]
2005-05-17 22:01:07 +00:00
Jonathan Turkanis
4b7933c685 swicthed to filter/test.hpp
[SVN r29002]
2005-05-17 21:59:20 +00:00
Jonathan Turkanis
5d56e950c6 renamed to 'newline_test.cpp'
[SVN r28677]
2005-05-05 22:14:34 +00:00
Jonathan Turkanis
858e968aa4 -
[SVN r28676]
2005-05-05 22:13:02 +00:00
Jonathan Turkanis
26b764756a renamed from 'newline_filter_test.cpp'; major rewrite
[SVN r28675]
2005-05-05 22:12:33 +00:00
Jonathan Turkanis
72626dd421 *** empty log message ***
[SVN r28617]
2005-05-02 21:54:28 +00:00
Jonathan Turkanis
db8fa6e5ec added comment
[SVN r28616]
2005-05-02 21:53:47 +00:00
Jonathan Turkanis
57fc1ff557 obsolete
[SVN r28611]
2005-05-02 21:20:04 +00:00
Jonathan Turkanis
58b65b7b7e added support for non-blocking i/o
[SVN r28426]
2005-04-22 19:29:05 +00:00
Jonathan Turkanis
868c2a1072 inital commitment
[SVN r28425]
2005-04-22 19:23:44 +00:00
Vladimir Prus
5f28194a95 Fix some paths
[SVN r28267]
2005-04-15 08:11:16 +00:00
Vladimir Prus
4416f099a8 Add V2 Jamfile
[SVN r28266]
2005-04-15 07:59:23 +00:00
Victor A. Wagner Jr.
b3219b1e82 Changed \r\r\n to \r\n so that VC8.0 can compile it
[SVN r28234]
2005-04-14 05:22:48 +00:00
Jonathan Turkanis
c5020171dc inegrated Jonathan Graehls changes
[SVN r28232]
2005-04-14 04:25:08 +00:00
Jonathan Turkanis
1379d5f21c large seek offset support
[SVN r28227]
2005-04-13 21:25:45 +00:00
Jonathan Turkanis
5cf18ff572 switched from pass by ref to components with shared state
[SVN r28225]
2005-04-13 18:03:53 +00:00
Jonathan Turkanis
748109a44e switched from pass by ref to extraction with component()
[SVN r28223]
2005-04-13 17:53:46 +00:00
Jonathan Turkanis
94541551ef renamed pipeline_test.cpp
[SVN r28222]
2005-04-13 17:30:55 +00:00
Jonathan Turkanis
eb35301914 added tests
[SVN r28221]
2005-04-13 16:30:11 +00:00
Jonathan Turkanis
800c0f694c fixed flushable filter
[SVN r28220]
2005-04-13 16:27:13 +00:00
Jonathan Turkanis
b5849c189e switched to compatibilty macros
[SVN r28219]
2005-04-13 16:26:32 +00:00
Jonathan Turkanis
1b36e112dc first genuine version
[SVN r28218]
2005-04-13 16:25:57 +00:00
Jonathan Turkanis
29607d2c51 inital commitment
[SVN r28217]
2005-04-13 16:22:13 +00:00
Jonathan Turkanis
0091c18455 moved using directives
[SVN r28155]
2005-04-12 06:30:57 +00:00
Jonathan Turkanis
327e7dd542 removed unused variable
[SVN r28154]
2005-04-12 06:21:03 +00:00
Jonathan Turkanis
6dd30f51b5 moved using directives
[SVN r28153]
2005-04-12 06:19:44 +00:00
Jonathan Turkanis
b06a2a16e7 renamed from pipable_test.cpp
[SVN r28151]
2005-04-12 06:18:20 +00:00
Jonathan Turkanis
a1ba0d03fa added tests
[SVN r28149]
2005-04-12 06:14:52 +00:00
Jonathan Turkanis
6331e92fb4 initila commitment
[SVN r28148]
2005-04-12 06:13:37 +00:00
Jonathan Turkanis
088221f841 initial commitment
[SVN r28131]
2005-04-11 15:41:45 +00:00
Jonathan Turkanis
c098b6c44d added newline to test data; switched to binary mode where necessary
[SVN r28048]
2005-04-07 18:13:13 +00:00
Jonathan Turkanis
bd308d492b added flushable_output_filter; reformatted
[SVN r28047]
2005-04-07 18:12:28 +00:00
Jonathan Turkanis
d3ba07dc5f renamed set_buffer_size --> set_device_buffer_size
[SVN r28020]
2005-04-06 16:39:46 +00:00
Jonathan Turkanis
c2154420f1 moved filebuf definition above filtering_stream definition
[SVN r27999]
2005-04-06 04:22:22 +00:00
Jonathan Turkanis
64e9c9e58d fixes for CW 9
[SVN r27816]
2005-03-25 12:55:18 +00:00
Jonathan Turkanis
a38dc36a9f removed unnecessary scope
[SVN r27815]
2005-03-25 12:53:36 +00:00
Jonathan Turkanis
9987601be9 uncommented code
[SVN r27809]
2005-03-24 21:18:35 +00:00
Jonathan Turkanis
013289216a commented out all but first test, to diagnose Darwin problem
[SVN r27616]
2005-03-12 03:17:38 +00:00
Jonathan Turkanis
9bffac1641 added BOOST_MESSAGE at beginning of test
[SVN r27589]
2005-03-09 19:29:24 +00:00
Jonathan Turkanis
8f367f6f7a updated Boost.Test namespaces
[SVN r27570]
2005-03-08 02:25:34 +00:00
Jonathan Turkanis
745e4b42ad added BOOST_MESSAGE in 6 places (prev commit msg was an error)
[SVN r27569]
2005-03-08 02:24:57 +00:00
Jonathan Turkanis
4601846a91 added BOOST_MESSAGE in six locations
[SVN r27568]
2005-03-08 00:26:31 +00:00
Jonathan Turkanis
f2b480665a specified static runtime for cw-9_3-darwin
[SVN r27437]
2005-02-19 23:21:37 +00:00
Jonathan Turkanis
811441b7ca added #error directive for platforms without wide streams
[SVN r27383]
2005-02-15 08:01:31 +00:00
Jonathan Turkanis
71576f7794 forced static-linking for all tests with msvc-stlport toolset
[SVN r27379]
2005-02-14 21:21:56 +00:00
Jonathan Turkanis
f4ae19c6c9 disabled global optimization for VC6
[SVN r27372]
2005-02-14 07:14:29 +00:00
Jonathan Turkanis
fbdf131202 forced static linking in several test with msvc-stlport debug build
[SVN r27371]
2005-02-14 07:12:54 +00:00
Jonathan Turkanis
307babd2a2 added #error directives for unsupported plaforms
[SVN r27337]
2005-02-12 21:11:18 +00:00
Jonathan Turkanis
732fa1b0a6 commented out compression tests
[SVN r27317]
2005-02-10 21:11:29 +00:00
Jonathan Turkanis
34e3d0b36a rewrote to use test-iostreams rule
[SVN r27314]
2005-02-10 20:25:21 +00:00
Jonathan Turkanis
5fd81effc2 compiled w/ min/max guidelines
[SVN r27294]
2005-02-09 22:19:00 +00:00
Jonathan Turkanis
acabaf50a6 switched back to io::back_inerter, since old Dinkumware doesn't define string::push_back()
[SVN r27293]
2005-02-09 22:17:49 +00:00
Jonathan Turkanis
187747fdb1 removed casts of buffer size arguments to streamsize
[SVN r27292]
2005-02-09 22:16:02 +00:00
Jonathan Turkanis
3d6cae3db4 switched from io::back_inserter to std::back_inserter, for MSVC+STLPort
[SVN r27283]
2005-02-09 20:25:21 +00:00
Jonathan Turkanis
c636331d15 reformatting
[SVN r27265]
2005-02-09 01:10:21 +00:00
Jonathan Turkanis
02c7883c57 added include directive for add_facet.hpp
[SVN r27264]
2005-02-09 01:09:26 +00:00
Jonathan Turkanis
ca39c0c829 additional support for 'old' iostreams
[SVN r27237]
2005-02-08 09:02:47 +00:00
Jonathan Turkanis
7971f6540e preliminary support for 'old' iostreams
[SVN r27214]
2005-02-07 08:02:42 +00:00
Jonathan Turkanis
74db877f09 renamed config/locale.hpp --> config/wide_streams.hpp
[SVN r27213]
2005-02-07 08:02:09 +00:00
Jonathan Turkanis
d6d09bebfb added codecvt_helper include; removed namespace qual. from codecvt_intern
[SVN r27161]
2005-02-06 03:44:40 +00:00
Jonathan Turkanis
81ace62bfb erged .hpp files into .cpp files
[SVN r27135]
2005-02-05 05:12:11 +00:00
Jonathan Turkanis
a30564c632 erged into .cpp file
[SVN r27134]
2005-02-05 05:09:14 +00:00
Jonathan Turkanis
e11d869497 updated to avoid explicit spec of template args, for VC6
[SVN r27103]
2005-02-04 21:04:11 +00:00
Jonathan Turkanis
f98662a33f removed return statement from function returning void
[SVN r27102]
2005-02-04 20:59:42 +00:00
Jonathan Turkanis
4b65923b81 fixed line-endings(?)
[SVN r27101]
2005-02-04 20:58:18 +00:00
Jonathan Turkanis
29a5586632 removed tests for broken component
[SVN r27079]
2005-02-03 18:47:07 +00:00
Jonathan Turkanis
ad8f94c117 removed use of adapt and overload of push() taking two separate iterators
[SVN r27030]
2005-02-02 07:13:09 +00:00
Jonathan Turkanis
dfad10f907 added borland workaround
[SVN r26989]
2005-02-01 17:10:29 +00:00
Jonathan Turkanis
f51ed89090 uncommented all tests but compression tests
[SVN r26976]
2005-01-31 23:25:05 +00:00
Jonathan Turkanis
4190d45407 converted line-endings to unix
[SVN r26970]
2005-01-31 19:52:23 +00:00
Jonathan Turkanis
6b0aa9ad19 misnamed version of 'seek_test.hpp'
[SVN r26969]
2005-01-31 18:44:19 +00:00
Jonathan Turkanis
4a09b8973c commented out compression tests
[SVN r26933]
2005-01-30 15:02:04 +00:00
Jonathan Turkanis
c0564c3c7c initial commitment
[SVN r26900]
2005-01-28 23:54:41 +00:00