This is the mail archive of the libstdc++-cvs@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

r147937 - in /trunk/libstdc++-v3: ChangeLog tes...


Author: bkoz
Date: Thu May 28 00:17:00 2009
New Revision: 147937

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=147937
Log:
2009-05-28  Benjamin Kosnik  <bkoz@redhat.com>

	* testsuite/util/testsuite_allocator.h (check_new, check_delete): Move
	to ...
	* testsuite/util/replacement_memory_operators.h: ...here. New.
	* testsuite/util/testsuite_hooks.h (counter): To object_counter.
	* testsuite/util/testsuite_hooks.cc: Same.

	* testsuite/ext/mt_allocator/deallocate_local_thread-1.cc: Use
	replacement_memory_operators.h.
	* testsuite/ext/mt_allocator/deallocate_local_thread-3.cc: Same.
	* testsuite/ext/mt_allocator/check_delete.cc: Same.
	* testsuite/ext/mt_allocator/deallocate_local_thread-5.cc: Same.
	* testsuite/ext/mt_allocator/deallocate_local_thread-7.cc: Same.
	* testsuite/ext/mt_allocator/deallocate_global_thread-1.cc: Same.
	* testsuite/ext/mt_allocator/deallocate_global_thread-3.cc: Same.
	* testsuite/ext/mt_allocator/deallocate_local-2.cc: Same.
	* testsuite/ext/mt_allocator/deallocate_local-4.cc: Same.
	* testsuite/ext/mt_allocator/deallocate_local-6.cc: Same.
	* testsuite/ext/mt_allocator/deallocate_local-8.cc: Same.
	* testsuite/ext/mt_allocator/deallocate_global-2.cc: Same.
	* testsuite/ext/mt_allocator/deallocate_global-4.cc: Same.
	* testsuite/ext/mt_allocator/check_new.cc: Same.
	* testsuite/ext/debug_allocator/check_delete.cc: Same.
	* testsuite/ext/debug_allocator/check_new.cc: Same.
	* testsuite/ext/new_allocator/deallocate_global.cc: Same.
	* testsuite/ext/new_allocator/check_delete.cc: Same.
	* testsuite/ext/new_allocator/check_new.cc: Same.
	* testsuite/ext/new_allocator/deallocate_local.cc: Same.
	* testsuite/ext/throw_allocator/deallocate_global.cc: Same.
	* testsuite/ext/throw_allocator/check_delete.cc: Same.
	* testsuite/ext/throw_allocator/check_new.cc: Same.
	* testsuite/ext/throw_allocator/deallocate_local.cc: Same.
	* testsuite/ext/malloc_allocator/deallocate_global.cc: Same.
	* testsuite/ext/malloc_allocator/check_delete.cc: Same.
	* testsuite/ext/malloc_allocator/check_new.cc: Same.
	* testsuite/ext/malloc_allocator/deallocate_local.cc: Same.
	* testsuite/ext/pool_allocator/check_delete.cc: Same.
	* testsuite/ext/pool_allocator/check_new.cc: Same.
	* testsuite/ext/bitmap_allocator/check_delete.cc: Same.
	* testsuite/ext/bitmap_allocator/check_new.cc: Same.
	* testsuite/ext/array_allocator/check_delete.cc: Same.
	* testsuite/ext/array_allocator/check_new.cc: Same.
	* testsuite/23_containers/deque/cons/1.cc: Same.
	* testsuite/23_containers/deque/cons/2.cc: Same.


Added:
    trunk/libstdc++-v3/testsuite/util/replacement_memory_operators.h
Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/testsuite/23_containers/deque/cons/1.cc
    trunk/libstdc++-v3/testsuite/23_containers/deque/cons/2.cc
    trunk/libstdc++-v3/testsuite/ext/array_allocator/check_delete.cc
    trunk/libstdc++-v3/testsuite/ext/array_allocator/check_new.cc
    trunk/libstdc++-v3/testsuite/ext/bitmap_allocator/check_delete.cc
    trunk/libstdc++-v3/testsuite/ext/bitmap_allocator/check_new.cc
    trunk/libstdc++-v3/testsuite/ext/debug_allocator/check_delete.cc
    trunk/libstdc++-v3/testsuite/ext/debug_allocator/check_new.cc
    trunk/libstdc++-v3/testsuite/ext/malloc_allocator/check_delete.cc
    trunk/libstdc++-v3/testsuite/ext/malloc_allocator/check_new.cc
    trunk/libstdc++-v3/testsuite/ext/malloc_allocator/deallocate_global.cc
    trunk/libstdc++-v3/testsuite/ext/malloc_allocator/deallocate_local.cc
    trunk/libstdc++-v3/testsuite/ext/mt_allocator/check_delete.cc
    trunk/libstdc++-v3/testsuite/ext/mt_allocator/check_new.cc
    trunk/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_global-2.cc
    trunk/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_global-4.cc
    trunk/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_global_thread-1.cc
    trunk/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_global_thread-3.cc
    trunk/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_local-2.cc
    trunk/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_local-4.cc
    trunk/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_local-6.cc
    trunk/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_local-8.cc
    trunk/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_local_thread-1.cc
    trunk/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_local_thread-3.cc
    trunk/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_local_thread-5.cc
    trunk/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_local_thread-7.cc
    trunk/libstdc++-v3/testsuite/ext/new_allocator/check_delete.cc
    trunk/libstdc++-v3/testsuite/ext/new_allocator/check_new.cc
    trunk/libstdc++-v3/testsuite/ext/new_allocator/deallocate_global.cc
    trunk/libstdc++-v3/testsuite/ext/new_allocator/deallocate_local.cc
    trunk/libstdc++-v3/testsuite/ext/pool_allocator/check_delete.cc
    trunk/libstdc++-v3/testsuite/ext/pool_allocator/check_new.cc
    trunk/libstdc++-v3/testsuite/ext/throw_allocator/check_delete.cc
    trunk/libstdc++-v3/testsuite/ext/throw_allocator/check_new.cc
    trunk/libstdc++-v3/testsuite/ext/throw_allocator/deallocate_global.cc
    trunk/libstdc++-v3/testsuite/ext/throw_allocator/deallocate_local.cc
    trunk/libstdc++-v3/testsuite/util/testsuite_allocator.h
    trunk/libstdc++-v3/testsuite/util/testsuite_hooks.cc
    trunk/libstdc++-v3/testsuite/util/testsuite_hooks.h


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]