diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 0273958d79e..b0d610f6484 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,40 @@ +2004-01-30 Paolo Carlini + + Reshuffle performance testsuite. + * testsuite/performance/allocator.cc, allocator_map_thread.cc, + allocator_thread.cc, complex_norm.cc, container_benchmark.cc, + cout_insert_int.cc, filebuf_copy.cc, filebuf_sputc.cc, + fstream_seek_write.cc, ifstream_extract_float.cc, + ifstream_extract_int.cc, ifstream_getline.cc, is_wchar_t.cc, + list_create_fill_sort.cc, map_create_fill.cc, + narrow_widen_char.cc, narrow_widen_wchar_t.cc, + ofstream_insert_float.cc, ofstream_insert_int.cc, + string_append.cc, wchar_t_in.cc, wchar_t_length.cc, + wchar_t_out.cc: Split into... + * testsuite/performance/20_util/allocator.cc: New. + * testsuite/performance/20_util/allocator_map_thread.cc: New. + * testsuite/performance/20_util/allocator_thread.cc: New. + * testsuite/performance/21_strings/string_append: New. + * testsuite/performance/22_locale/is_wchar_t.cc: New. + * testsuite/performance/22_locale/narrow_widen_char.cc: New. + * testsuite/performance/22_locale/narrow_widen_wchar_t.cc: New. + * testsuite/performance/22_locale/wchar_t_in.cc: New. + * testsuite/performance/22_locale/wchar_t_length.cc: New. + * testsuite/performance/22_locale/wchar_t_out.cc: New. + * testsuite/performance/23_containers/container_benchmark.cc: New. + * testsuite/performance/23_containers/list_create_fill_sort.cc: New. + * testsuite/performance/23_containers/map_create_fill.cc: New. + * testsuite/performance/26_numerics/complex_norm.cc: New. + * testsuite/performance/27_io/cout_insert_int.cc: New. + * testsuite/performance/27_io/filebuf_copy.cc: New. + * testsuite/performance/27_io/filebuf_sputc.cc: New. + * testsuite/performance/27_io/fstream_seek_write.cc: New. + * testsuite/performance/27_io/ifstream_extract_float.cc: New. + * testsuite/performance/27_io/ifstream_extract_int.cc: New. + * testsuite/performance/27_io/ifstream_getline.cc: New. + * testsuite/performance/27_io/ofstream_insert_float.cc: New. + * testsuite/performance/27_io/ofstream_insert_int.cc: New. + 2004-01-30 Paolo Carlini * include/bits/basic_string.tcc (_Rep::_S_create): diff --git a/libstdc++-v3/testsuite/performance/allocator.cc b/libstdc++-v3/testsuite/performance/20_util/allocator.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/allocator.cc rename to libstdc++-v3/testsuite/performance/20_util/allocator.cc diff --git a/libstdc++-v3/testsuite/performance/allocator_map_thread.cc b/libstdc++-v3/testsuite/performance/20_util/allocator_map_thread.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/allocator_map_thread.cc rename to libstdc++-v3/testsuite/performance/20_util/allocator_map_thread.cc diff --git a/libstdc++-v3/testsuite/performance/allocator_thread.cc b/libstdc++-v3/testsuite/performance/20_util/allocator_thread.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/allocator_thread.cc rename to libstdc++-v3/testsuite/performance/20_util/allocator_thread.cc diff --git a/libstdc++-v3/testsuite/performance/string_append.cc b/libstdc++-v3/testsuite/performance/21_strings/string_append.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/string_append.cc rename to libstdc++-v3/testsuite/performance/21_strings/string_append.cc diff --git a/libstdc++-v3/testsuite/performance/is_wchar_t.cc b/libstdc++-v3/testsuite/performance/22_locale/is_wchar_t.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/is_wchar_t.cc rename to libstdc++-v3/testsuite/performance/22_locale/is_wchar_t.cc diff --git a/libstdc++-v3/testsuite/performance/narrow_widen_char.cc b/libstdc++-v3/testsuite/performance/22_locale/narrow_widen_char.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/narrow_widen_char.cc rename to libstdc++-v3/testsuite/performance/22_locale/narrow_widen_char.cc diff --git a/libstdc++-v3/testsuite/performance/narrow_widen_wchar_t.cc b/libstdc++-v3/testsuite/performance/22_locale/narrow_widen_wchar_t.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/narrow_widen_wchar_t.cc rename to libstdc++-v3/testsuite/performance/22_locale/narrow_widen_wchar_t.cc diff --git a/libstdc++-v3/testsuite/performance/wchar_t_in.cc b/libstdc++-v3/testsuite/performance/22_locale/wchar_t_in.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/wchar_t_in.cc rename to libstdc++-v3/testsuite/performance/22_locale/wchar_t_in.cc diff --git a/libstdc++-v3/testsuite/performance/wchar_t_length.cc b/libstdc++-v3/testsuite/performance/22_locale/wchar_t_length.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/wchar_t_length.cc rename to libstdc++-v3/testsuite/performance/22_locale/wchar_t_length.cc diff --git a/libstdc++-v3/testsuite/performance/wchar_t_out.cc b/libstdc++-v3/testsuite/performance/22_locale/wchar_t_out.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/wchar_t_out.cc rename to libstdc++-v3/testsuite/performance/22_locale/wchar_t_out.cc diff --git a/libstdc++-v3/testsuite/performance/container_benchmark.cc b/libstdc++-v3/testsuite/performance/23_containers/container_benchmark.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/container_benchmark.cc rename to libstdc++-v3/testsuite/performance/23_containers/container_benchmark.cc diff --git a/libstdc++-v3/testsuite/performance/list_create_fill_sort.cc b/libstdc++-v3/testsuite/performance/23_containers/list_create_fill_sort.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/list_create_fill_sort.cc rename to libstdc++-v3/testsuite/performance/23_containers/list_create_fill_sort.cc diff --git a/libstdc++-v3/testsuite/performance/map_create_fill.cc b/libstdc++-v3/testsuite/performance/23_containers/map_create_fill.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/map_create_fill.cc rename to libstdc++-v3/testsuite/performance/23_containers/map_create_fill.cc diff --git a/libstdc++-v3/testsuite/performance/complex_norm.cc b/libstdc++-v3/testsuite/performance/26_numerics/complex_norm.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/complex_norm.cc rename to libstdc++-v3/testsuite/performance/26_numerics/complex_norm.cc diff --git a/libstdc++-v3/testsuite/performance/cout_insert_int.cc b/libstdc++-v3/testsuite/performance/27_io/cout_insert_int.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/cout_insert_int.cc rename to libstdc++-v3/testsuite/performance/27_io/cout_insert_int.cc diff --git a/libstdc++-v3/testsuite/performance/filebuf_copy.cc b/libstdc++-v3/testsuite/performance/27_io/filebuf_copy.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/filebuf_copy.cc rename to libstdc++-v3/testsuite/performance/27_io/filebuf_copy.cc diff --git a/libstdc++-v3/testsuite/performance/filebuf_sputc.cc b/libstdc++-v3/testsuite/performance/27_io/filebuf_sputc.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/filebuf_sputc.cc rename to libstdc++-v3/testsuite/performance/27_io/filebuf_sputc.cc diff --git a/libstdc++-v3/testsuite/performance/fstream_seek_write.cc b/libstdc++-v3/testsuite/performance/27_io/fstream_seek_write.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/fstream_seek_write.cc rename to libstdc++-v3/testsuite/performance/27_io/fstream_seek_write.cc diff --git a/libstdc++-v3/testsuite/performance/ifstream_extract_float.cc b/libstdc++-v3/testsuite/performance/27_io/ifstream_extract_float.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/ifstream_extract_float.cc rename to libstdc++-v3/testsuite/performance/27_io/ifstream_extract_float.cc diff --git a/libstdc++-v3/testsuite/performance/ifstream_extract_int.cc b/libstdc++-v3/testsuite/performance/27_io/ifstream_extract_int.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/ifstream_extract_int.cc rename to libstdc++-v3/testsuite/performance/27_io/ifstream_extract_int.cc diff --git a/libstdc++-v3/testsuite/performance/ifstream_getline.cc b/libstdc++-v3/testsuite/performance/27_io/ifstream_getline.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/ifstream_getline.cc rename to libstdc++-v3/testsuite/performance/27_io/ifstream_getline.cc diff --git a/libstdc++-v3/testsuite/performance/ofstream_insert_float.cc b/libstdc++-v3/testsuite/performance/27_io/ofstream_insert_float.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/ofstream_insert_float.cc rename to libstdc++-v3/testsuite/performance/27_io/ofstream_insert_float.cc diff --git a/libstdc++-v3/testsuite/performance/ofstream_insert_int.cc b/libstdc++-v3/testsuite/performance/27_io/ofstream_insert_int.cc similarity index 100% rename from libstdc++-v3/testsuite/performance/ofstream_insert_int.cc rename to libstdc++-v3/testsuite/performance/27_io/ofstream_insert_int.cc