[cfe-commits] [libcxx] r171594 - in /libcxx/trunk/test: ./ algorithms/alg.modifying.operations/alg.copy/ algorithms/alg.modifying.operations/alg.fill/ algorithms/alg.modifying.operations/alg.generate/ algorithms/alg.modifying.operations/alg.move/ algorithms/alg.modifying.operations/alg.partitions/ algorithms/alg.modifying.operations/alg.remove/ algorithms/alg.modifying.operations/alg.replace/ algorithms/alg.modifying.operations/alg.reverse/ algorithms/alg.modifying.operations/alg.rotate/ algorithms/alg.modifying.opera...
Marshall Clow
mclow at qualcomm.com
Fri Jan 4 19:21:05 PST 2013
Author: marshall
Date: Fri Jan 4 21:21:01 2013
New Revision: 171594
URL: http://llvm.org/viewvc/llvm-project?rev=171594&view=rev
Log:
Move common header files into a 'support' directory; make 'testit' include -I to that directory; rename 'iterators.h' to 'iterator_test.h'; remove hard-coded paths to include files from more than 350 source files
Added:
libcxx/trunk/test/support/
libcxx/trunk/test/support/hexfloat.h
- copied unchanged from r171586, libcxx/trunk/test/hexfloat.h
libcxx/trunk/test/support/platform_support.h
- copied unchanged from r171586, libcxx/trunk/test/platform_support.h
libcxx/trunk/test/support/test_iterators.h
- copied unchanged from r171586, libcxx/trunk/test/iterators.h
Removed:
libcxx/trunk/test/hexfloat.h
libcxx/trunk/test/iterators.h
libcxx/trunk/test/platform_support.h
Modified:
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_if.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.fill/fill.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.generate/generate.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.generate/generate_n.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.move/move.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.move/move_backward.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition_copy.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition_point.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/stable_partition.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_copy.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_copy.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_copy_if.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_if.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.reverse/reverse.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.reverse/reverse_copy.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.rotate/rotate.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.rotate/rotate_copy.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.transform/binary_transform.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.transform/unary_transform.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_copy.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_copy_pred.pass.cpp
libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_pred.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find_pred.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.all_of/all_of.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.any_of/any_of.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.count/count.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.count/count_if.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.end/find_end.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.first.of/find_first_of.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.first.of/find_first_of_pred.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find_if.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find_if_not.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.foreach/test.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation_pred.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.none_of/none_of.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.search/search.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/alg.search/search_pred.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/mismatch/mismatch.pass.cpp
libcxx/trunk/test/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/binary.search/binary_search.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/binary.search/binary_search_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/equal.range/equal_range.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/equal.range/equal_range_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.merge/inplace_merge.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.merge/inplace_merge_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.merge/merge.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.merge/merge_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/max_element.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/max_element_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/min_element.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/min_element_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_element.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_element_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/next_permutation.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/next_permutation_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/prev_permutation.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/prev_permutation_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/includes/includes.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/includes/includes_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.difference/set_difference.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.difference/set_difference_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.intersection/set_intersection.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.intersection/set_intersection_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/set_symmetric_difference.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/set_symmetric_difference_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.union/set_union.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.union/set_union_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_until.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_until_comp.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy.pass.cpp
libcxx/trunk/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy_comp.pass.cpp
libcxx/trunk/test/containers/associative/map/map.modifiers/insert_iter_iter.pass.cpp
libcxx/trunk/test/containers/associative/multimap/multimap.modifiers/insert_iter_iter.pass.cpp
libcxx/trunk/test/containers/associative/multiset/insert_iter_iter.pass.cpp
libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter.pass.cpp
libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter_alloc.pass.cpp
libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter_comp.pass.cpp
libcxx/trunk/test/containers/associative/set/insert_iter_iter.pass.cpp
libcxx/trunk/test/containers/associative/set/set.cons/iter_iter.pass.cpp
libcxx/trunk/test/containers/associative/set/set.cons/iter_iter_alloc.pass.cpp
libcxx/trunk/test/containers/associative/set/set.cons/iter_iter_comp.pass.cpp
libcxx/trunk/test/containers/sequences/deque/deque.cons/assign_iter_iter.pass.cpp
libcxx/trunk/test/containers/sequences/deque/deque.cons/assign_size_value.pass.cpp
libcxx/trunk/test/containers/sequences/deque/deque.cons/iter_iter.pass.cpp
libcxx/trunk/test/containers/sequences/deque/deque.cons/iter_iter_alloc.pass.cpp
libcxx/trunk/test/containers/sequences/deque/deque.modifiers/insert_iter_iter.pass.cpp
libcxx/trunk/test/containers/sequences/deque/deque.special/copy.pass.cpp
libcxx/trunk/test/containers/sequences/deque/deque.special/copy_backward.pass.cpp
libcxx/trunk/test/containers/sequences/deque/deque.special/move.pass.cpp
libcxx/trunk/test/containers/sequences/deque/deque.special/move_backward.pass.cpp
libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/assign_range.pass.cpp
libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/range.pass.cpp
libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/range_alloc.pass.cpp
libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_range.pass.cpp
libcxx/trunk/test/containers/sequences/list/list.cons/input_iterator.pass.cpp
libcxx/trunk/test/containers/sequences/vector.bool/construct_iter_iter.pass.cpp
libcxx/trunk/test/containers/sequences/vector.bool/construct_iter_iter_alloc.pass.cpp
libcxx/trunk/test/containers/sequences/vector.bool/insert_iter_iter_iter.pass.cpp
libcxx/trunk/test/containers/sequences/vector/vector.cons/construct_iter_iter.pass.cpp
libcxx/trunk/test/containers/sequences/vector/vector.cons/construct_iter_iter_alloc.pass.cpp
libcxx/trunk/test/containers/sequences/vector/vector.modifiers/insert_iter_iter_iter.pass.cpp
libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range.pass.cpp
libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size.pass.cpp
libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash.pass.cpp
libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash_equal.pass.cpp
libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash_equal_allocator.pass.cpp
libcxx/trunk/test/containers/unord/unord.map/unorder.map.modifiers/insert_init.pass.cpp
libcxx/trunk/test/containers/unord/unord.map/unorder.map.modifiers/insert_range.pass.cpp
libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range.pass.cpp
libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size.pass.cpp
libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash.pass.cpp
libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash_equal.pass.cpp
libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash_equal_allocator.pass.cpp
libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.modifiers/insert_init.pass.cpp
libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.modifiers/insert_range.pass.cpp
libcxx/trunk/test/containers/unord/unord.multiset/insert_init.pass.cpp
libcxx/trunk/test/containers/unord/unord.multiset/insert_range.pass.cpp
libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range.pass.cpp
libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size.pass.cpp
libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash.pass.cpp
libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash_equal.pass.cpp
libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash_equal_allocator.pass.cpp
libcxx/trunk/test/containers/unord/unord.set/insert_init.pass.cpp
libcxx/trunk/test/containers/unord/unord.set/insert_range.pass.cpp
libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range.pass.cpp
libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size.pass.cpp
libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash.pass.cpp
libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash_equal.pass.cpp
libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash_equal_allocator.pass.cpp
libcxx/trunk/test/depr/depr.c.headers/math_h.pass.cpp
libcxx/trunk/test/input.output/file.streams/fstreams/filebuf.virtuals/overflow.pass.cpp
libcxx/trunk/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.pass.cpp
libcxx/trunk/test/input.output/iostream.format/ext.manip/get_money.pass.cpp
libcxx/trunk/test/input.output/iostream.format/ext.manip/get_time.pass.cpp
libcxx/trunk/test/input.output/iostream.format/ext.manip/put_money.pass.cpp
libcxx/trunk/test/input.output/iostream.format/ext.manip/put_time.pass.cpp
libcxx/trunk/test/input.output/iostreams.base/ios.base/ios.base.callback/register_callback.pass.cpp
libcxx/trunk/test/input.output/iostreams.base/ios.base/ios.base.locales/imbue.pass.cpp
libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/copyfmt.pass.cpp
libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/imbue.pass.cpp
libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/move.pass.cpp
libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/swap.pass.cpp
libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.cons/copy.pass.cpp
libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.cons/default.pass.cpp
libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.locales/locales.pass.cpp
libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/assign.pass.cpp
libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/swap.pass.cpp
libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/advance.pass.cpp
libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/distance.pass.cpp
libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/next.pass.cpp
libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/prev.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/make_move_iterator.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/minus.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/plus.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.+/difference_type.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.+=/difference_type.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-/difference_type.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-=/difference_type.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_eq.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gt.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gte.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lt.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lte.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_neq.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/convert.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/default.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/iter.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.decr/post.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.decr/pre.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.incr/post.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.incr/pre.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.index/difference_type.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op=/move_iterator.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iterator/types.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/default.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/iter.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/reverse_iterator.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op!=/test.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op++/post.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op++/pre.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op+/difference_type.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op+=/difference_type.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op--/post.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op--/pre.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op-/difference_type.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op-=/difference_type.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op=/reverse_iterator.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op==/test.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opdiff/test.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt/test.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt=/test.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opindex/difference_type.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt/test.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt=/test.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opsum/difference_type.pass.cpp
libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iterator/types.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/compare.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/hash.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/transform.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/types.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.ctype/locale.codecvt.byname/ctor_wchar_t.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/is_1.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/is_many.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/narrow_1.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/narrow_many.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/scan_is.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/scan_not.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/tolower_1.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/tolower_many.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/toupper_1.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/toupper_many.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/types.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/widen_1.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/widen_many.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_en_US.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_fr_FR.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_ru_RU.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_zh_CN.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_string_en_US.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_en_US.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_fr_FR.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_ru_RU.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_zh_CN.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_string_en_US.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/curr_symbol.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/decimal_point.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/frac_digits.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/grouping.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/neg_format.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/negative_sign.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/pos_format.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/positive_sign.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/thousands_sep.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_bool.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_double.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_double.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_long.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_pointer.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_bool.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_double.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_float.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_double.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_long.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_pointer.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_int.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long_long.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_short.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/date_order.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/date_order_wide.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_date.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_date_wide.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_monthname.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_monthname_wide.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_one.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_one_wide.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_time.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_time_wide.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_weekday.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_weekday_wide.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_year.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_year_wide.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/date_order.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_date.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_date_wide.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_many.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_monthname.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_monthname_wide.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_one.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_time.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_time_wide.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_weekday.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_weekday_wide.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_year.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put.byname/put1.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/put1.pass.cpp
libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/put2.pass.cpp
libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/decimal_point.pass.cpp
libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/grouping.pass.cpp
libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/thousands_sep.pass.cpp
libcxx/trunk/test/localization/locales/locale/locale.cons/assign.pass.cpp
libcxx/trunk/test/localization/locales/locale/locale.cons/char_pointer.pass.cpp
libcxx/trunk/test/localization/locales/locale/locale.cons/copy.pass.cpp
libcxx/trunk/test/localization/locales/locale/locale.cons/default.pass.cpp
libcxx/trunk/test/localization/locales/locale/locale.cons/locale_char_pointer_cat.pass.cpp
libcxx/trunk/test/localization/locales/locale/locale.cons/locale_facetptr.pass.cpp
libcxx/trunk/test/localization/locales/locale/locale.cons/locale_locale_cat.pass.cpp
libcxx/trunk/test/localization/locales/locale/locale.cons/locale_string_cat.pass.cpp
libcxx/trunk/test/localization/locales/locale/locale.cons/string.pass.cpp
libcxx/trunk/test/localization/locales/locale/locale.members/name.pass.cpp
libcxx/trunk/test/localization/locales/locale/locale.operators/eq.pass.cpp
libcxx/trunk/test/localization/locales/locale/locale.statics/global.pass.cpp
libcxx/trunk/test/numerics/c.math/cmath.pass.cpp
libcxx/trunk/test/numerics/numeric.ops/accumulate/accumulate.pass.cpp
libcxx/trunk/test/numerics/numeric.ops/accumulate/accumulate_op.pass.cpp
libcxx/trunk/test/numerics/numeric.ops/adjacent.difference/adjacent_difference.pass.cpp
libcxx/trunk/test/numerics/numeric.ops/adjacent.difference/adjacent_difference_op.pass.cpp
libcxx/trunk/test/numerics/numeric.ops/inner.product/inner_product.pass.cpp
libcxx/trunk/test/numerics/numeric.ops/inner.product/inner_product_comp.pass.cpp
libcxx/trunk/test/numerics/numeric.ops/numeric.iota/iota.pass.cpp
libcxx/trunk/test/numerics/numeric.ops/partial.sum/partial_sum.pass.cpp
libcxx/trunk/test/numerics/numeric.ops/partial.sum/partial_sum_op.pass.cpp
libcxx/trunk/test/re/re.alg/re.alg.match/awk.pass.cpp
libcxx/trunk/test/re/re.alg/re.alg.match/basic.pass.cpp
libcxx/trunk/test/re/re.alg/re.alg.match/ecma.pass.cpp
libcxx/trunk/test/re/re.alg/re.alg.match/egrep.pass.cpp
libcxx/trunk/test/re/re.alg/re.alg.match/extended.pass.cpp
libcxx/trunk/test/re/re.alg/re.alg.match/grep.pass.cpp
libcxx/trunk/test/re/re.alg/re.alg.replace/test1.pass.cpp
libcxx/trunk/test/re/re.alg/re.alg.replace/test2.pass.cpp
libcxx/trunk/test/re/re.alg/re.alg.search/awk.pass.cpp
libcxx/trunk/test/re/re.alg/re.alg.search/basic.pass.cpp
libcxx/trunk/test/re/re.alg/re.alg.search/ecma.pass.cpp
libcxx/trunk/test/re/re.alg/re.alg.search/egrep.pass.cpp
libcxx/trunk/test/re/re.alg/re.alg.search/extended.pass.cpp
libcxx/trunk/test/re/re.alg/re.alg.search/grep.pass.cpp
libcxx/trunk/test/re/re.regex/re.regex.assign/assign_iter_iter_flag.pass.cpp
libcxx/trunk/test/re/re.regex/re.regex.construct/iter_iter.pass.cpp
libcxx/trunk/test/re/re.regex/re.regex.construct/iter_iter_flg.pass.cpp
libcxx/trunk/test/re/re.regex/re.regex.locale/imbue.pass.cpp
libcxx/trunk/test/re/re.results/re.results.form/form1.pass.cpp
libcxx/trunk/test/re/re.results/re.results.form/form2.pass.cpp
libcxx/trunk/test/re/re.traits/default.pass.cpp
libcxx/trunk/test/re/re.traits/getloc.pass.cpp
libcxx/trunk/test/re/re.traits/imbue.pass.cpp
libcxx/trunk/test/re/re.traits/lookup_classname.pass.cpp
libcxx/trunk/test/re/re.traits/lookup_collatename.pass.cpp
libcxx/trunk/test/re/re.traits/transform.pass.cpp
libcxx/trunk/test/re/re.traits/transform_primary.pass.cpp
libcxx/trunk/test/re/re.traits/translate_nocase.pass.cpp
libcxx/trunk/test/testit
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_if.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_if.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_if.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_if.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct Pred
{
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.fill/fill.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.fill/fill.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.fill/fill.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.fill/fill.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.generate/generate.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.generate/generate.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.generate/generate.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.generate/generate.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct gen_test
{
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.generate/generate_n.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.generate/generate_n.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.generate/generate_n.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.generate/generate_n.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct gen_test
{
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.move/move.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.move/move.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.move/move.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.move/move.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <memory>
#endif
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.move/move_backward.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.move/move_backward.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.move/move_backward.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.move/move_backward.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <memory>
#endif
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct is_odd
{
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <memory>
#endif
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct is_odd
{
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition_copy.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition_copy.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition_copy.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition_copy.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct is_odd
{
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition_point.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition_point.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition_point.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/partition_point.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct is_odd
{
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/stable_partition.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/stable_partition.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/stable_partition.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.partitions/stable_partition.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <memory>
#endif
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct is_odd
{
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <memory>
#endif
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_copy.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_copy.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_copy.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_copy.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp Fri Jan 4 21:21:01 2013
@@ -22,7 +22,7 @@
#include <memory>
#endif
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_copy.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_copy.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_copy.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_copy.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_copy_if.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_copy_if.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_copy_if.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_copy_if.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_if.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_if.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_if.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.replace/replace_if.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.reverse/reverse.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.reverse/reverse.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.reverse/reverse.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.reverse/reverse.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.reverse/reverse_copy.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.reverse/reverse_copy.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.reverse/reverse_copy.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.reverse/reverse_copy.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.rotate/rotate.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.rotate/rotate.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.rotate/rotate.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.rotate/rotate.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <memory>
#endif
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.rotate/rotate_copy.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.rotate/rotate_copy.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.rotate/rotate_copy.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.rotate/rotate_copy.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <memory>
#endif
-#include "../../../iterators.h"
+#include "test_iterators.h"
template<class Iter1, class Iter2>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.transform/binary_transform.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.transform/binary_transform.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.transform/binary_transform.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.transform/binary_transform.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template<class InIter1, class InIter2, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.transform/unary_transform.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.transform/unary_transform.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.transform/unary_transform.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.transform/unary_transform.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <memory>
#endif
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_copy.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_copy.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_copy.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_copy.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_copy_pred.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_copy_pred.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_copy_pred.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_copy_pred.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct count_equal
{
Modified: libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_pred.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_pred.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_pred.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.modifying.operations/alg.unique/unique_pred.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <memory>
#endif
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct count_equal
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find_pred.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find_pred.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find_pred.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find_pred.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.all_of/all_of.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.all_of/all_of.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.all_of/all_of.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.all_of/all_of.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct test1
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.any_of/any_of.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.any_of/any_of.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.any_of/any_of.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.any_of/any_of.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct test1
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.count/count.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.count/count.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.count/count.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.count/count.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.count/count_if.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.count/count_if.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.count/count_if.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.count/count_if.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.end/find_end.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.end/find_end.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.end/find_end.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.end/find_end.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2>
void
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct count_equal
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.first.of/find_first_of.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.first.of/find_first_of.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.first.of/find_first_of.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.first.of/find_first_of.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.first.of/find_first_of_pred.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.first.of/find_first_of_pred.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.first.of/find_first_of_pred.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find.first.of/find_first_of_pred.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find_if.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find_if.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find_if.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find_if.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find_if_not.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find_if_not.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find_if_not.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.find/find_if_not.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.foreach/test.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.foreach/test.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.foreach/test.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.foreach/test.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct for_each_test
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation_pred.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation_pred.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation_pred.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation_pred.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.none_of/none_of.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.none_of/none_of.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.none_of/none_of.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.none_of/none_of.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct test1
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.search/search.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.search/search.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.search/search.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.search/search.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2>
void
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/alg.search/search_pred.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/alg.search/search_pred.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/alg.search/search_pred.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/alg.search/search_pred.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
struct count_equal
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/mismatch/mismatch.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/mismatch/mismatch.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/mismatch/mismatch.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/mismatch/mismatch.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/binary.search/binary_search.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/binary.search/binary_search.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/binary.search/binary_search.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/binary.search/binary_search.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <vector>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter, class T>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/binary.search/binary_search_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/binary.search/binary_search_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/binary.search/binary_search_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/binary.search/binary_search_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <functional>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter, class T>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/equal.range/equal_range.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/equal.range/equal_range.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/equal.range/equal_range.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/equal.range/equal_range.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <vector>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter, class T>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/equal.range/equal_range_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/equal.range/equal_range_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/equal.range/equal_range_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/equal.range/equal_range_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <vector>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter, class T>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <vector>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter, class T>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <vector>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter, class T>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <vector>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter, class T>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <vector>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter, class T>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.merge/inplace_merge.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.merge/inplace_merge.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.merge/inplace_merge.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.merge/inplace_merge.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.merge/inplace_merge_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.merge/inplace_merge_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.merge/inplace_merge_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.merge/inplace_merge_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -30,7 +30,7 @@
#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.merge/merge.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.merge/merge.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.merge/merge.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.merge/merge.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter1, class InIter2, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.merge/merge_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.merge/merge_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.merge/merge_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.merge/merge_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -22,7 +22,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter1, class InIter2, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/max_element.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/max_element.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/max_element.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/max_element.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/max_element_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/max_element_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/max_element_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/max_element_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/min_element.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/min_element.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/min_element.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/min_element.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/min_element_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/min_element_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/min_element_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/min_element_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_element.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_element.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_element.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_element.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_element_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_element_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_element_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_element_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/next_permutation.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/next_permutation.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/next_permutation.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/next_permutation.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
#include <cstdio>
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/next_permutation_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/next_permutation_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/next_permutation_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/next_permutation_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
#include <cstdio>
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/prev_permutation.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/prev_permutation.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/prev_permutation.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/prev_permutation.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
#include <cstdio>
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/prev_permutation_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/prev_permutation_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/prev_permutation_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.permutation.generators/prev_permutation_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
#include <cstdio>
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/includes/includes.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/includes/includes.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/includes/includes.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/includes/includes.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/includes/includes_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/includes/includes_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/includes/includes_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/includes/includes_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <functional>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.difference/set_difference.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.difference/set_difference.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.difference/set_difference.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.difference/set_difference.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.difference/set_difference_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.difference/set_difference_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.difference/set_difference_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.difference/set_difference_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -23,7 +23,7 @@
#include <functional>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.intersection/set_intersection.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.intersection/set_intersection.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.intersection/set_intersection.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.intersection/set_intersection.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.intersection/set_intersection_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.intersection/set_intersection_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.intersection/set_intersection_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.intersection/set_intersection_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -23,7 +23,7 @@
#include <functional>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/set_symmetric_difference.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/set_symmetric_difference.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/set_symmetric_difference.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/set_symmetric_difference.pass.cpp Fri Jan 4 21:21:01 2013
@@ -22,7 +22,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/set_symmetric_difference_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/set_symmetric_difference_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/set_symmetric_difference_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/set_symmetric_difference_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -24,7 +24,7 @@
#include <functional>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.union/set_union.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.union/set_union.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.union/set_union.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.union/set_union.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.union/set_union_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.union/set_union_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.union/set_union_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.set.operations/set.union/set_union_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -23,7 +23,7 @@
#include <functional>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2, class OutIter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <functional>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_until.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_until.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_until.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_until.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_until_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_until_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_until_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_until_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <functional>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <algorithm>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -23,7 +23,7 @@
#include <functional>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/containers/associative/map/map.modifiers/insert_iter_iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/associative/map/map.modifiers/insert_iter_iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/associative/map/map.modifiers/insert_iter_iter.pass.cpp (original)
+++ libcxx/trunk/test/containers/associative/map/map.modifiers/insert_iter_iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <map>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/associative/multimap/multimap.modifiers/insert_iter_iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/associative/multimap/multimap.modifiers/insert_iter_iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/associative/multimap/multimap.modifiers/insert_iter_iter.pass.cpp (original)
+++ libcxx/trunk/test/containers/associative/multimap/multimap.modifiers/insert_iter_iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <map>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/associative/multiset/insert_iter_iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/associative/multiset/insert_iter_iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/associative/multiset/insert_iter_iter.pass.cpp (original)
+++ libcxx/trunk/test/containers/associative/multiset/insert_iter_iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <set>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter.pass.cpp (original)
+++ libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <set>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter_alloc.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter_alloc.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <set>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_compare.h"
#include "../../../test_allocator.h"
Modified: libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter_comp.pass.cpp (original)
+++ libcxx/trunk/test/containers/associative/multiset/multiset.cons/iter_iter_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <set>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_compare.h"
int main()
Modified: libcxx/trunk/test/containers/associative/set/insert_iter_iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/associative/set/insert_iter_iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/associative/set/insert_iter_iter.pass.cpp (original)
+++ libcxx/trunk/test/containers/associative/set/insert_iter_iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <set>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/associative/set/set.cons/iter_iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/associative/set/set.cons/iter_iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/associative/set/set.cons/iter_iter.pass.cpp (original)
+++ libcxx/trunk/test/containers/associative/set/set.cons/iter_iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <set>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/associative/set/set.cons/iter_iter_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/associative/set/set.cons/iter_iter_alloc.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/associative/set/set.cons/iter_iter_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/associative/set/set.cons/iter_iter_alloc.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <set>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_compare.h"
#include "../../../test_allocator.h"
Modified: libcxx/trunk/test/containers/associative/set/set.cons/iter_iter_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/associative/set/set.cons/iter_iter_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/associative/set/set.cons/iter_iter_comp.pass.cpp (original)
+++ libcxx/trunk/test/containers/associative/set/set.cons/iter_iter_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <set>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_compare.h"
int main()
Modified: libcxx/trunk/test/containers/sequences/deque/deque.cons/assign_iter_iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/deque/deque.cons/assign_iter_iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/deque/deque.cons/assign_iter_iter.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/deque/deque.cons/assign_iter_iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <deque>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
std::deque<int>
make(int size, int start = 0 )
Modified: libcxx/trunk/test/containers/sequences/deque/deque.cons/assign_size_value.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/deque/deque.cons/assign_size_value.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/deque/deque.cons/assign_size_value.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/deque/deque.cons/assign_size_value.pass.cpp Fri Jan 4 21:21:01 2013
@@ -14,7 +14,7 @@
#include <deque>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
std::deque<int>
make(int size, int start = 0 )
Modified: libcxx/trunk/test/containers/sequences/deque/deque.cons/iter_iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/deque/deque.cons/iter_iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/deque/deque.cons/iter_iter.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/deque/deque.cons/iter_iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <cassert>
#include "../../../stack_allocator.h"
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class InputIterator>
void
Modified: libcxx/trunk/test/containers/sequences/deque/deque.cons/iter_iter_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/deque/deque.cons/iter_iter_alloc.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/deque/deque.cons/iter_iter_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/deque/deque.cons/iter_iter_alloc.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <deque>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_allocator.h"
template <class InputIterator, class Allocator>
Modified: libcxx/trunk/test/containers/sequences/deque/deque.modifiers/insert_iter_iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/deque/deque.modifiers/insert_iter_iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/deque/deque.modifiers/insert_iter_iter.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/deque/deque.modifiers/insert_iter_iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <deque>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../MoveOnly.h"
#include "../../../stack_allocator.h"
Modified: libcxx/trunk/test/containers/sequences/deque/deque.special/copy.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/deque/deque.special/copy.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/deque/deque.special/copy.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/deque/deque.special/copy.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <deque>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
std::deque<int>
make(int size, int start = 0 )
Modified: libcxx/trunk/test/containers/sequences/deque/deque.special/copy_backward.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/deque/deque.special/copy_backward.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/deque/deque.special/copy_backward.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/deque/deque.special/copy_backward.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <deque>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
std::deque<int>
make(int size, int start = 0 )
Modified: libcxx/trunk/test/containers/sequences/deque/deque.special/move.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/deque/deque.special/move.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/deque/deque.special/move.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/deque/deque.special/move.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <deque>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
std::deque<int>
make(int size, int start = 0 )
Modified: libcxx/trunk/test/containers/sequences/deque/deque.special/move_backward.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/deque/deque.special/move_backward.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/deque/deque.special/move_backward.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/deque/deque.special/move_backward.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <deque>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
std::deque<int>
make(int size, int start = 0 )
Modified: libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/assign_range.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/assign_range.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/assign_range.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/assign_range.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <cassert>
#include <iterator>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/range.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/range.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/range.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/range.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <cassert>
#include <iterator>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/range_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/range_alloc.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/range_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.cons/range_alloc.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <iterator>
#include "../../../test_allocator.h"
-#include "../../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_range.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_range.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_range.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_range.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <forward_list>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/sequences/list/list.cons/input_iterator.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/list/list.cons/input_iterator.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/list/list.cons/input_iterator.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/list/list.cons/input_iterator.pass.cpp Fri Jan 4 21:21:01 2013
@@ -14,7 +14,7 @@
#include <list>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../stack_allocator.h"
int main()
Modified: libcxx/trunk/test/containers/sequences/vector.bool/construct_iter_iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/vector.bool/construct_iter_iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/vector.bool/construct_iter_iter.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/vector.bool/construct_iter_iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <vector>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class C, class Iterator>
void
Modified: libcxx/trunk/test/containers/sequences/vector.bool/construct_iter_iter_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/vector.bool/construct_iter_iter_alloc.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/vector.bool/construct_iter_iter_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/vector.bool/construct_iter_iter_alloc.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <vector>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class C, class Iterator>
void
Modified: libcxx/trunk/test/containers/sequences/vector.bool/insert_iter_iter_iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/vector.bool/insert_iter_iter_iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/vector.bool/insert_iter_iter_iter.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/vector.bool/insert_iter_iter_iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <vector>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/sequences/vector/vector.cons/construct_iter_iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/vector/vector.cons/construct_iter_iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/vector/vector.cons/construct_iter_iter.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/vector/vector.cons/construct_iter_iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -14,7 +14,7 @@
#include <vector>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../stack_allocator.h"
template <class C, class Iterator>
Modified: libcxx/trunk/test/containers/sequences/vector/vector.cons/construct_iter_iter_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/vector/vector.cons/construct_iter_iter_alloc.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/vector/vector.cons/construct_iter_iter_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/vector/vector.cons/construct_iter_iter_alloc.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <vector>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../stack_allocator.h"
template <class C, class Iterator>
Modified: libcxx/trunk/test/containers/sequences/vector/vector.modifiers/insert_iter_iter_iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/sequences/vector/vector.modifiers/insert_iter_iter_iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/sequences/vector/vector.modifiers/insert_iter_iter_iter.pass.cpp (original)
+++ libcxx/trunk/test/containers/sequences/vector/vector.modifiers/insert_iter_iter_iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <vector>
#include <cassert>
#include "../../../stack_allocator.h"
-#include "../../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../NotConstructible.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
Modified: libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../NotConstructible.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
Modified: libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash.pass.cpp Fri Jan 4 21:21:01 2013
@@ -22,7 +22,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../NotConstructible.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
Modified: libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash_equal.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash_equal.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash_equal.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash_equal.pass.cpp Fri Jan 4 21:21:01 2013
@@ -22,7 +22,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../NotConstructible.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
Modified: libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash_equal_allocator.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash_equal_allocator.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash_equal_allocator.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.map/unord.map.cnstr/range_size_hash_equal_allocator.pass.cpp Fri Jan 4 21:21:01 2013
@@ -23,7 +23,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../NotConstructible.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
Modified: libcxx/trunk/test/containers/unord/unord.map/unorder.map.modifiers/insert_init.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.map/unorder.map.modifiers/insert_init.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.map/unorder.map.modifiers/insert_init.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.map/unorder.map.modifiers/insert_init.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <string>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/unord/unord.map/unorder.map.modifiers/insert_range.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.map/unorder.map.modifiers/insert_range.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.map/unorder.map.modifiers/insert_range.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.map/unorder.map.modifiers/insert_range.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <string>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../NotConstructible.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
Modified: libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../NotConstructible.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
Modified: libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash.pass.cpp Fri Jan 4 21:21:01 2013
@@ -22,7 +22,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../NotConstructible.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
Modified: libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash_equal.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash_equal.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash_equal.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash_equal.pass.cpp Fri Jan 4 21:21:01 2013
@@ -22,7 +22,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../NotConstructible.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
Modified: libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash_equal_allocator.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash_equal_allocator.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash_equal_allocator.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash_equal_allocator.pass.cpp Fri Jan 4 21:21:01 2013
@@ -23,7 +23,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../NotConstructible.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
Modified: libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.modifiers/insert_init.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.modifiers/insert_init.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.modifiers/insert_init.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.modifiers/insert_init.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <string>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.modifiers/insert_range.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.modifiers/insert_range.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.modifiers/insert_range.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.multimap/unord.multimap.modifiers/insert_range.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <string>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/unord/unord.multiset/insert_init.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.multiset/insert_init.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.multiset/insert_init.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.multiset/insert_init.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <unordered_set>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/unord/unord.multiset/insert_range.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.multiset/insert_range.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.multiset/insert_range.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.multiset/insert_range.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <unordered_set>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
#include "../../../test_allocator.h"
Modified: libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
#include "../../../test_allocator.h"
Modified: libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
#include "../../../test_allocator.h"
Modified: libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash_equal.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash_equal.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash_equal.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash_equal.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
#include "../../../test_allocator.h"
Modified: libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash_equal_allocator.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash_equal_allocator.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash_equal_allocator.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash_equal_allocator.pass.cpp Fri Jan 4 21:21:01 2013
@@ -22,7 +22,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
#include "../../../test_allocator.h"
Modified: libcxx/trunk/test/containers/unord/unord.set/insert_init.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.set/insert_init.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.set/insert_init.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.set/insert_init.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <unordered_set>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/unord/unord.set/insert_range.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.set/insert_range.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.set/insert_range.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.set/insert_range.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <unordered_set>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
#include "../../../test_allocator.h"
Modified: libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
#include "../../../test_allocator.h"
Modified: libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
#include "../../../test_allocator.h"
Modified: libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash_equal.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash_equal.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash_equal.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash_equal.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
#include "../../../test_allocator.h"
Modified: libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash_equal_allocator.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash_equal_allocator.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash_equal_allocator.pass.cpp (original)
+++ libcxx/trunk/test/containers/unord/unord.set/unord.set.cnstr/range_size_hash_equal_allocator.pass.cpp Fri Jan 4 21:21:01 2013
@@ -22,7 +22,7 @@
#include <cassert>
#include <cfloat>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
#include "../../../test_allocator.h"
Modified: libcxx/trunk/test/depr/depr.c.headers/math_h.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/depr/depr.c.headers/math_h.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/depr/depr.c.headers/math_h.pass.cpp (original)
+++ libcxx/trunk/test/depr/depr.c.headers/math_h.pass.cpp Fri Jan 4 21:21:01 2013
@@ -13,7 +13,7 @@
#include <type_traits>
#include <cassert>
-#include "../../hexfloat.h"
+#include "hexfloat.h"
void test_acos()
{
Removed: libcxx/trunk/test/hexfloat.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/hexfloat.h?rev=171593&view=auto
==============================================================================
--- libcxx/trunk/test/hexfloat.h (original)
+++ libcxx/trunk/test/hexfloat.h (removed)
@@ -1,38 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// Define a hexfloat literal emulator since we can't depend on being able to
-// for hexfloat literals
-
-// 0x10.F5p-10 == hexfloat<double>(0x10, 0xF5, -10)
-
-#ifndef HEXFLOAT_H
-#define HEXFLOAT_H
-
-#include <algorithm>
-#include <cmath>
-#include <climits>
-
-template <class T>
-class hexfloat
-{
- T value_;
-public:
- hexfloat(long long m1, unsigned long long m0, int exp)
- {
- const std::size_t n = sizeof(unsigned long long) * CHAR_BIT;
- int s = m1 < 0 ? -1 : 1;
- value_ = std::ldexp(m1 + s * std::ldexp(T(m0), -static_cast<int>(n -
- std::__clz(m0)/4*4)), exp);
- }
-
- operator T() const {return value_;}
-};
-
-#endif
Modified: libcxx/trunk/test/input.output/file.streams/fstreams/filebuf.virtuals/overflow.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/file.streams/fstreams/filebuf.virtuals/overflow.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/file.streams/fstreams/filebuf.virtuals/overflow.pass.cpp (original)
+++ libcxx/trunk/test/input.output/file.streams/fstreams/filebuf.virtuals/overflow.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <fstream>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
template <class CharT>
struct test_buf
Modified: libcxx/trunk/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.pass.cpp (original)
+++ libcxx/trunk/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <fstream>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
template <class CharT>
struct test_buf
Modified: libcxx/trunk/test/input.output/iostream.format/ext.manip/get_money.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/iostream.format/ext.manip/get_money.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/iostream.format/ext.manip/get_money.pass.cpp (original)
+++ libcxx/trunk/test/input.output/iostream.format/ext.manip/get_money.pass.cpp Fri Jan 4 21:21:01 2013
@@ -14,7 +14,7 @@
#include <iomanip>
#include <cassert>
-#include "../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
template <class CharT>
struct testbuf
Modified: libcxx/trunk/test/input.output/iostream.format/ext.manip/get_time.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/iostream.format/ext.manip/get_time.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/iostream.format/ext.manip/get_time.pass.cpp (original)
+++ libcxx/trunk/test/input.output/iostream.format/ext.manip/get_time.pass.cpp Fri Jan 4 21:21:01 2013
@@ -14,7 +14,7 @@
#include <iomanip>
#include <cassert>
-#include "../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
template <class CharT>
struct testbuf
Modified: libcxx/trunk/test/input.output/iostream.format/ext.manip/put_money.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/iostream.format/ext.manip/put_money.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/iostream.format/ext.manip/put_money.pass.cpp (original)
+++ libcxx/trunk/test/input.output/iostream.format/ext.manip/put_money.pass.cpp Fri Jan 4 21:21:01 2013
@@ -14,7 +14,7 @@
#include <iomanip>
#include <cassert>
-#include "../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
template <class CharT>
class testbuf
Modified: libcxx/trunk/test/input.output/iostream.format/ext.manip/put_time.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/iostream.format/ext.manip/put_time.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/iostream.format/ext.manip/put_time.pass.cpp (original)
+++ libcxx/trunk/test/input.output/iostream.format/ext.manip/put_time.pass.cpp Fri Jan 4 21:21:01 2013
@@ -14,7 +14,7 @@
#include <iomanip>
#include <cassert>
-#include "../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
template <class CharT>
class testbuf
Modified: libcxx/trunk/test/input.output/iostreams.base/ios.base/ios.base.callback/register_callback.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/iostreams.base/ios.base/ios.base.callback/register_callback.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/iostreams.base/ios.base/ios.base.callback/register_callback.pass.cpp (original)
+++ libcxx/trunk/test/input.output/iostreams.base/ios.base/ios.base.callback/register_callback.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <locale>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
class test
: public std::ios
Modified: libcxx/trunk/test/input.output/iostreams.base/ios.base/ios.base.locales/imbue.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/iostreams.base/ios.base/ios.base.locales/imbue.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/iostreams.base/ios.base/ios.base.locales/imbue.pass.cpp (original)
+++ libcxx/trunk/test/input.output/iostreams.base/ios.base/ios.base.locales/imbue.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <locale>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
class test
: public std::ios
Modified: libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/copyfmt.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/copyfmt.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/copyfmt.pass.cpp (original)
+++ libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/copyfmt.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <streambuf>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
struct testbuf
: public std::streambuf
Modified: libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/imbue.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/imbue.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/imbue.pass.cpp (original)
+++ libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/imbue.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <streambuf>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
struct testbuf
: public std::streambuf
Modified: libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/move.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/move.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/move.pass.cpp (original)
+++ libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/move.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <streambuf>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
struct testbuf
: public std::streambuf
Modified: libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/swap.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/swap.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/swap.pass.cpp (original)
+++ libcxx/trunk/test/input.output/iostreams.base/ios/basic.ios.members/swap.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <streambuf>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
struct testbuf
: public std::streambuf
Modified: libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.cons/copy.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.cons/copy.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.cons/copy.pass.cpp (original)
+++ libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.cons/copy.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <streambuf>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
template <class CharT>
struct test
Modified: libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.cons/default.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.cons/default.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.cons/default.pass.cpp (original)
+++ libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.cons/default.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <streambuf>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
template <class CharT>
struct test
Modified: libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.locales/locales.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.locales/locales.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.locales/locales.pass.cpp (original)
+++ libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.locales/locales.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <streambuf>
#include <cassert>
-#include "../../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
template <class CharT>
struct test
Modified: libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/assign.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/assign.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/assign.pass.cpp (original)
+++ libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/assign.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <streambuf>
#include <cassert>
-#include "../../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
template <class CharT>
struct test
Modified: libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/swap.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/swap.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/swap.pass.cpp (original)
+++ libcxx/trunk/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/swap.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <streambuf>
#include <cassert>
-#include "../../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
template <class CharT>
struct test
Removed: libcxx/trunk/test/iterators.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators.h?rev=171593&view=auto
==============================================================================
--- libcxx/trunk/test/iterators.h (original)
+++ libcxx/trunk/test/iterators.h (removed)
@@ -1,296 +0,0 @@
-#ifndef ITERATORS_H
-#define ITERATORS_H
-
-#include <iterator>
-
-template <class It>
-class output_iterator
-{
- It it_;
-
- template <class U> friend class output_iterator;
-public:
- typedef std::output_iterator_tag iterator_category;
- typedef typename std::iterator_traits<It>::value_type value_type;
- typedef typename std::iterator_traits<It>::difference_type difference_type;
- typedef It pointer;
- typedef typename std::iterator_traits<It>::reference reference;
-
- It base() const {return it_;}
-
- output_iterator () {}
- explicit output_iterator(It it) : it_(it) {}
- template <class U>
- output_iterator(const output_iterator<U>& u) :it_(u.it_) {}
-
- reference operator*() const {return *it_;}
-
- output_iterator& operator++() {++it_; return *this;}
- output_iterator operator++(int)
- {output_iterator tmp(*this); ++(*this); return tmp;}
-};
-
-template <class It>
-class input_iterator
-{
- It it_;
-
- template <class U> friend class input_iterator;
-public:
- typedef std::input_iterator_tag iterator_category;
- typedef typename std::iterator_traits<It>::value_type value_type;
- typedef typename std::iterator_traits<It>::difference_type difference_type;
- typedef It pointer;
- typedef typename std::iterator_traits<It>::reference reference;
-
- It base() const {return it_;}
-
- input_iterator() : it_() {}
- explicit input_iterator(It it) : it_(it) {}
- template <class U>
- input_iterator(const input_iterator<U>& u) :it_(u.it_) {}
-
- reference operator*() const {return *it_;}
- pointer operator->() const {return it_;}
-
- input_iterator& operator++() {++it_; return *this;}
- input_iterator operator++(int)
- {input_iterator tmp(*this); ++(*this); return tmp;}
-
- friend bool operator==(const input_iterator& x, const input_iterator& y)
- {return x.it_ == y.it_;}
- friend bool operator!=(const input_iterator& x, const input_iterator& y)
- {return !(x == y);}
-};
-
-template <class T, class U>
-inline
-bool
-operator==(const input_iterator<T>& x, const input_iterator<U>& y)
-{
- return x.base() == y.base();
-}
-
-template <class T, class U>
-inline
-bool
-operator!=(const input_iterator<T>& x, const input_iterator<U>& y)
-{
- return !(x == y);
-}
-
-template <class It>
-class forward_iterator
-{
- It it_;
-
- template <class U> friend class forward_iterator;
-public:
- typedef std::forward_iterator_tag iterator_category;
- typedef typename std::iterator_traits<It>::value_type value_type;
- typedef typename std::iterator_traits<It>::difference_type difference_type;
- typedef It pointer;
- typedef typename std::iterator_traits<It>::reference reference;
-
- It base() const {return it_;}
-
- forward_iterator() : it_() {}
- explicit forward_iterator(It it) : it_(it) {}
- template <class U>
- forward_iterator(const forward_iterator<U>& u) :it_(u.it_) {}
-
- reference operator*() const {return *it_;}
- pointer operator->() const {return it_;}
-
- forward_iterator& operator++() {++it_; return *this;}
- forward_iterator operator++(int)
- {forward_iterator tmp(*this); ++(*this); return tmp;}
-
- friend bool operator==(const forward_iterator& x, const forward_iterator& y)
- {return x.it_ == y.it_;}
- friend bool operator!=(const forward_iterator& x, const forward_iterator& y)
- {return !(x == y);}
-};
-
-template <class T, class U>
-inline
-bool
-operator==(const forward_iterator<T>& x, const forward_iterator<U>& y)
-{
- return x.base() == y.base();
-}
-
-template <class T, class U>
-inline
-bool
-operator!=(const forward_iterator<T>& x, const forward_iterator<U>& y)
-{
- return !(x == y);
-}
-
-template <class It>
-class bidirectional_iterator
-{
- It it_;
-
- template <class U> friend class bidirectional_iterator;
-public:
- typedef std::bidirectional_iterator_tag iterator_category;
- typedef typename std::iterator_traits<It>::value_type value_type;
- typedef typename std::iterator_traits<It>::difference_type difference_type;
- typedef It pointer;
- typedef typename std::iterator_traits<It>::reference reference;
-
- It base() const {return it_;}
-
- bidirectional_iterator() : it_() {}
- explicit bidirectional_iterator(It it) : it_(it) {}
- template <class U>
- bidirectional_iterator(const bidirectional_iterator<U>& u) :it_(u.it_) {}
-
- reference operator*() const {return *it_;}
- pointer operator->() const {return it_;}
-
- bidirectional_iterator& operator++() {++it_; return *this;}
- bidirectional_iterator operator++(int)
- {bidirectional_iterator tmp(*this); ++(*this); return tmp;}
-
- bidirectional_iterator& operator--() {--it_; return *this;}
- bidirectional_iterator operator--(int)
- {bidirectional_iterator tmp(*this); --(*this); return tmp;}
-};
-
-template <class T, class U>
-inline
-bool
-operator==(const bidirectional_iterator<T>& x, const bidirectional_iterator<U>& y)
-{
- return x.base() == y.base();
-}
-
-template <class T, class U>
-inline
-bool
-operator!=(const bidirectional_iterator<T>& x, const bidirectional_iterator<U>& y)
-{
- return !(x == y);
-}
-
-template <class It>
-class random_access_iterator
-{
- It it_;
-
- template <class U> friend class random_access_iterator;
-public:
- typedef std::random_access_iterator_tag iterator_category;
- typedef typename std::iterator_traits<It>::value_type value_type;
- typedef typename std::iterator_traits<It>::difference_type difference_type;
- typedef It pointer;
- typedef typename std::iterator_traits<It>::reference reference;
-
- It base() const {return it_;}
-
- random_access_iterator() : it_() {}
- explicit random_access_iterator(It it) : it_(it) {}
- template <class U>
- random_access_iterator(const random_access_iterator<U>& u) :it_(u.it_) {}
-
- reference operator*() const {return *it_;}
- pointer operator->() const {return it_;}
-
- random_access_iterator& operator++() {++it_; return *this;}
- random_access_iterator operator++(int)
- {random_access_iterator tmp(*this); ++(*this); return tmp;}
-
- random_access_iterator& operator--() {--it_; return *this;}
- random_access_iterator operator--(int)
- {random_access_iterator tmp(*this); --(*this); return tmp;}
-
- random_access_iterator& operator+=(difference_type n) {it_ += n; return *this;}
- random_access_iterator operator+(difference_type n) const
- {random_access_iterator tmp(*this); tmp += n; return tmp;}
- friend random_access_iterator operator+(difference_type n, random_access_iterator x)
- {x += n; return x;}
- random_access_iterator& operator-=(difference_type n) {return *this += -n;}
- random_access_iterator operator-(difference_type n) const
- {random_access_iterator tmp(*this); tmp -= n; return tmp;}
-
- reference operator[](difference_type n) const {return it_[n];}
-};
-
-template <class T, class U>
-inline
-bool
-operator==(const random_access_iterator<T>& x, const random_access_iterator<U>& y)
-{
- return x.base() == y.base();
-}
-
-template <class T, class U>
-inline
-bool
-operator!=(const random_access_iterator<T>& x, const random_access_iterator<U>& y)
-{
- return !(x == y);
-}
-
-template <class T, class U>
-inline
-bool
-operator<(const random_access_iterator<T>& x, const random_access_iterator<U>& y)
-{
- return x.base() < y.base();
-}
-
-template <class T, class U>
-inline
-bool
-operator<=(const random_access_iterator<T>& x, const random_access_iterator<U>& y)
-{
- return !(y < x);
-}
-
-template <class T, class U>
-inline
-bool
-operator>(const random_access_iterator<T>& x, const random_access_iterator<U>& y)
-{
- return y < x;
-}
-
-template <class T, class U>
-inline
-bool
-operator>=(const random_access_iterator<T>& x, const random_access_iterator<U>& y)
-{
- return !(x < y);
-}
-
-template <class T, class U>
-inline
-typename std::iterator_traits<T>::difference_type
-operator-(const random_access_iterator<T>& x, const random_access_iterator<U>& y)
-{
- return x.base() - y.base();
-}
-
-template <class Iter>
-inline Iter base(output_iterator<Iter> i) { return i.base(); }
-
-template <class Iter>
-inline Iter base(input_iterator<Iter> i) { return i.base(); }
-
-template <class Iter>
-inline Iter base(forward_iterator<Iter> i) { return i.base(); }
-
-template <class Iter>
-inline Iter base(bidirectional_iterator<Iter> i) { return i.base(); }
-
-template <class Iter>
-inline Iter base(random_access_iterator<Iter> i) { return i.base(); }
-
-template <class Iter> // everything else
-inline Iter base(Iter i) { return i; }
-
-#endif // ITERATORS_H
Modified: libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/advance.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/advance.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/advance.pass.cpp (original)
+++ libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/advance.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <iterator>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/distance.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/distance.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/distance.pass.cpp (original)
+++ libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/distance.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <iterator>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/next.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/next.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/next.pass.cpp (original)
+++ libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/next.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <iterator>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/prev.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/prev.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/prev.pass.cpp (original)
+++ libcxx/trunk/test/iterators/iterator.primitives/iterator.operations/prev.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <iterator>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/make_move_iterator.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/make_move_iterator.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/make_move_iterator.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/make_move_iterator.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/minus.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/minus.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/minus.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/minus.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/plus.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/plus.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/plus.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/plus.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.+/difference_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.%2B/difference_type.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.+/difference_type.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.+/difference_type.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.+=/difference_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.%2B%3D/difference_type.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.+=/difference_type.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.+=/difference_type.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-/difference_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-/difference_type.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-/difference_type.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-/difference_type.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-=/difference_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-%3D/difference_type.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-=/difference_type.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-=/difference_type.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_eq.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_eq.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_eq.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_eq.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gt.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gt.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gt.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gt.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gte.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gte.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gte.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gte.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lt.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lt.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lt.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lt.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lte.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lte.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lte.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lte.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_neq.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_neq.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_neq.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_neq.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/convert.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/convert.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/convert.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/convert.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It, class U>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/default.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/default.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/default.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/default.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <iterator>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/iter.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.decr/post.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.decr/post.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.decr/post.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.decr/post.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.decr/pre.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.decr/pre.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.decr/pre.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.decr/pre.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.incr/post.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.incr/post.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.incr/post.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.incr/post.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.incr/pre.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.incr/pre.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.incr/pre.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.incr/pre.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.index/difference_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.index/difference_type.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.index/difference_type.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.index/difference_type.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <memory>
#endif
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op=/move_iterator.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op%3D/move_iterator.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op=/move_iterator.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op=/move_iterator.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It, class U>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iterator/types.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iterator/types.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iterator/types.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/move.iterators/move.iterator/types.pass.cpp Fri Jan 4 21:21:01 2013
@@ -26,7 +26,7 @@
#include <iterator>
#include <type_traits>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/default.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/default.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/default.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/default.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <iterator>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/iter.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/reverse_iterator.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/reverse_iterator.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/reverse_iterator.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/reverse_iterator.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It, class U>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op!=/test.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op%21%3D/test.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op!=/test.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op!=/test.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op++/post.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op%2B%2B/post.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op++/post.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op++/post.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op++/pre.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op%2B%2B/pre.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op++/pre.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op++/pre.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op+/difference_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op%2B/difference_type.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op+/difference_type.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op+/difference_type.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op+=/difference_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op%2B%3D/difference_type.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op+=/difference_type.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op+=/difference_type.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op--/post.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op--/post.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op--/post.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op--/post.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op--/pre.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op--/pre.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op--/pre.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op--/pre.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op-/difference_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op-/difference_type.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op-/difference_type.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op-/difference_type.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op-=/difference_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op-%3D/difference_type.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op-=/difference_type.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op-=/difference_type.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op=/reverse_iterator.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op%3D/reverse_iterator.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op=/reverse_iterator.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op=/reverse_iterator.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It, class U>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op==/test.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op%3D%3D/test.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op==/test.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op==/test.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opdiff/test.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opdiff/test.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opdiff/test.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opdiff/test.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <cstddef>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It1, class It2>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt/test.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt/test.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt/test.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt/test.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt=/test.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt%3D/test.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt=/test.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt=/test.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opindex/difference_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opindex/difference_type.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opindex/difference_type.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opindex/difference_type.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt/test.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt/test.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt/test.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt/test.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt=/test.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt%3D/test.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt=/test.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt=/test.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opsum/difference_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opsum/difference_type.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opsum/difference_type.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opsum/difference_type.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <iterator>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
void
Modified: libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iterator/types.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iterator/types.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iterator/types.pass.cpp (original)
+++ libcxx/trunk/test/iterators/predef.iterators/reverse.iterators/reverse.iterator/types.pass.cpp Fri Jan 4 21:21:01 2013
@@ -28,7 +28,7 @@
#include <iterator>
#include <type_traits>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
template <class It>
struct find_current
Modified: libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/compare.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/compare.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/compare.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/compare.pass.cpp Fri Jan 4 21:21:01 2013
@@ -24,7 +24,7 @@
#include <stdio.h>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/hash.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/hash.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/hash.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/hash.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <string>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/transform.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/transform.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/transform.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/transform.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <stdio.h>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/types.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/types.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/types.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.collate/locale.collate.byname/types.pass.cpp Fri Jan 4 21:21:01 2013
@@ -27,7 +27,7 @@
#include <stdio.h>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.ctype/locale.codecvt.byname/ctor_wchar_t.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.ctype/locale.codecvt.byname/ctor_wchar_t.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.ctype/locale.codecvt.byname/ctor_wchar_t.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.ctype/locale.codecvt.byname/ctor_wchar_t.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <locale>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef std::codecvt_byname<wchar_t, char, std::mbstate_t> F;
Modified: libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/is_1.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/is_1.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/is_1.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/is_1.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <type_traits>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/is_many.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/is_many.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/is_many.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/is_many.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <stdio.h>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/narrow_1.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/narrow_1.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/narrow_1.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/narrow_1.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <locale>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/narrow_many.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/narrow_many.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/narrow_many.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/narrow_many.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <vector>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/scan_is.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/scan_is.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/scan_is.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/scan_is.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <stdio.h>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/scan_not.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/scan_not.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/scan_not.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/scan_not.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <stdio.h>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/tolower_1.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/tolower_1.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/tolower_1.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/tolower_1.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <locale>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/tolower_many.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/tolower_many.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/tolower_many.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/tolower_many.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <string>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/toupper_1.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/toupper_1.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/toupper_1.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/toupper_1.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <locale>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/toupper_many.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/toupper_many.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/toupper_many.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/toupper_many.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <string>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/types.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/types.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/types.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/types.pass.cpp Fri Jan 4 21:21:01 2013
@@ -25,7 +25,7 @@
#include <type_traits>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/widen_1.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/widen_1.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/widen_1.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/widen_1.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <cassert>
#include <limits.h>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/widen_many.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/widen_many.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/widen_many.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.ctype/locale.ctype.byname/widen_many.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <vector>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_en_US.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_en_US.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_en_US.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_en_US.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,9 +18,9 @@
#include <ios>
#include <streambuf>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef std::money_get<char, input_iterator<const char*> > Fn;
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_fr_FR.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_fr_FR.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_fr_FR.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_fr_FR.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,9 +18,9 @@
#include <ios>
#include <streambuf>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef std::money_get<char, input_iterator<const char*> > Fn;
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_ru_RU.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_ru_RU.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_ru_RU.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_ru_RU.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,9 +18,9 @@
#include <ios>
#include <streambuf>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef std::money_get<char, input_iterator<const char*> > Fn;
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_zh_CN.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_zh_CN.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_zh_CN.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_zh_CN.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,9 +18,9 @@
#include <ios>
#include <streambuf>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef std::money_get<char, input_iterator<const char*> > Fn;
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_string_en_US.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_string_en_US.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_string_en_US.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_string_en_US.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,9 +18,9 @@
#include <ios>
#include <streambuf>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef std::money_get<char, input_iterator<const char*> > Fn;
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_en_US.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_en_US.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_en_US.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_en_US.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,9 +18,9 @@
#include <ios>
#include <streambuf>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef std::money_put<char, output_iterator<char*> > Fn;
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_fr_FR.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_fr_FR.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_fr_FR.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_fr_FR.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,9 +18,9 @@
#include <ios>
#include <streambuf>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef std::money_put<char, output_iterator<char*> > Fn;
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_ru_RU.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_ru_RU.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_ru_RU.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_ru_RU.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,9 +18,9 @@
#include <ios>
#include <streambuf>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef std::money_put<char, output_iterator<char*> > Fn;
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_zh_CN.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_zh_CN.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_zh_CN.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_zh_CN.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,9 +18,9 @@
#include <ios>
#include <streambuf>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef std::money_put<char, output_iterator<char*> > Fn;
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_string_en_US.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_string_en_US.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_string_en_US.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_string_en_US.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,9 +18,9 @@
#include <ios>
#include <streambuf>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef std::money_put<char, output_iterator<char*> > Fn;
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/curr_symbol.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/curr_symbol.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/curr_symbol.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/curr_symbol.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <limits>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
class Fnf
: public std::moneypunct_byname<char, false>
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/decimal_point.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/decimal_point.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/decimal_point.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/decimal_point.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <limits>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
class Fnf
: public std::moneypunct_byname<char, false>
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/frac_digits.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/frac_digits.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/frac_digits.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/frac_digits.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <limits>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
class Fnf
: public std::moneypunct_byname<char, false>
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/grouping.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/grouping.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/grouping.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/grouping.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <limits>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
class Fnf
: public std::moneypunct_byname<char, false>
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/neg_format.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/neg_format.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/neg_format.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/neg_format.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <limits>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
class Fnf
: public std::moneypunct_byname<char, false>
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/negative_sign.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/negative_sign.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/negative_sign.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/negative_sign.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <limits>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
class Fnf
: public std::moneypunct_byname<char, false>
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/pos_format.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/pos_format.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/pos_format.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/pos_format.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <limits>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
class Fnf
: public std::moneypunct_byname<char, false>
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/positive_sign.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/positive_sign.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/positive_sign.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/positive_sign.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <limits>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
class Fnf
: public std::moneypunct_byname<char, false>
Modified: libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/thousands_sep.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/thousands_sep.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/thousands_sep.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/thousands_sep.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <limits>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
class Fnf
: public std::moneypunct_byname<char, false>
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_bool.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_bool.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_bool.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_bool.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <ios>
#include <cassert>
#include <streambuf>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_put<char, output_iterator<char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_double.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_double.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_double.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_double.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <cassert>
#include <streambuf>
#include <cmath>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_put<char, output_iterator<char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <ios>
#include <cassert>
#include <streambuf>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_put<char, output_iterator<char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_double.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_double.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_double.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_double.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <cassert>
#include <streambuf>
#include <cmath>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_put<char, output_iterator<char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_long.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_long.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_long.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_long.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <ios>
#include <cassert>
#include <streambuf>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_put<char, output_iterator<char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_pointer.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_pointer.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_pointer.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_pointer.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <ios>
#include <cassert>
#include <streambuf>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_put<char, output_iterator<char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <ios>
#include <cassert>
#include <streambuf>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_put<char, output_iterator<char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <ios>
#include <cassert>
#include <streambuf>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_put<char, output_iterator<char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_bool.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_bool.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_bool.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_bool.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <ios>
#include <cassert>
#include <streambuf>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_get<char, input_iterator<const char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_double.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_double.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_double.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_double.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,8 +19,8 @@
#include <cassert>
#include <streambuf>
#include <cmath>
-#include "../../../../../iterators.h"
-#include "../../../../../hexfloat.h"
+#include "test_iterators.h"
+#include "hexfloat.h"
typedef std::num_get<char, input_iterator<const char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_float.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_float.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_float.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_float.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,8 +19,8 @@
#include <cassert>
#include <streambuf>
#include <cmath>
-#include "../../../../../iterators.h"
-#include "../../../../../hexfloat.h"
+#include "test_iterators.h"
+#include "hexfloat.h"
typedef std::num_get<char, input_iterator<const char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <ios>
#include <cassert>
#include <streambuf>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_get<char, input_iterator<const char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_double.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_double.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_double.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_double.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,8 +19,8 @@
#include <cassert>
#include <streambuf>
#include <cmath>
-#include "../../../../../iterators.h"
-#include "../../../../../hexfloat.h"
+#include "test_iterators.h"
+#include "hexfloat.h"
typedef std::num_get<char, input_iterator<const char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_long.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_long.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_long.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_long.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <ios>
#include <cassert>
#include <streambuf>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_get<char, input_iterator<const char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_pointer.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_pointer.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_pointer.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_pointer.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <ios>
#include <cassert>
#include <streambuf>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_get<char, input_iterator<const char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_int.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_int.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_int.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_int.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <ios>
#include <cassert>
#include <streambuf>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_get<char, input_iterator<const char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <ios>
#include <cassert>
#include <streambuf>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_get<char, input_iterator<const char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long_long.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long_long.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long_long.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long_long.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <ios>
#include <cassert>
#include <streambuf>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_get<char, input_iterator<const char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_short.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_short.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_short.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_short.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <ios>
#include <cassert>
#include <streambuf>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::num_get<char, input_iterator<const char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/date_order.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/date_order.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/date_order.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/date_order.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,9 +15,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef std::time_get_byname<char, input_iterator<const char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/date_order_wide.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/date_order_wide.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/date_order_wide.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/date_order_wide.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,9 +15,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef std::time_get_byname<wchar_t, input_iterator<const wchar_t*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_date.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_date.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_date.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_date.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,9 +17,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef input_iterator<const char*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_date_wide.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_date_wide.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_date_wide.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_date_wide.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,9 +17,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef input_iterator<const wchar_t*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_monthname.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_monthname.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_monthname.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_monthname.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,9 +17,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef input_iterator<const char*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_monthname_wide.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_monthname_wide.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_monthname_wide.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_monthname_wide.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,9 +17,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef input_iterator<const wchar_t*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_one.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_one.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_one.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_one.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,9 +16,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef input_iterator<const char*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_one_wide.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_one_wide.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_one_wide.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_one_wide.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,9 +16,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef input_iterator<const wchar_t*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_time.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_time.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_time.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_time.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,9 +17,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef input_iterator<const char*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_time_wide.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_time_wide.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_time_wide.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_time_wide.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,9 +17,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef input_iterator<const wchar_t*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_weekday.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_weekday.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_weekday.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_weekday.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,9 +17,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef input_iterator<const char*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_weekday_wide.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_weekday_wide.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_weekday_wide.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_weekday_wide.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,9 +17,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef input_iterator<const wchar_t*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_year.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_year.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_year.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_year.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,9 +16,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef input_iterator<const char*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_year_wide.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_year_wide.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_year_wide.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get.byname/get_year_wide.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,9 +16,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef input_iterator<const wchar_t*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/date_order.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/date_order.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/date_order.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/date_order.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <locale>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::time_get<char, input_iterator<const char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_date.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_date.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_date.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_date.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <locale>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef input_iterator<const char*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_date_wide.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_date_wide.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_date_wide.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_date_wide.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <locale>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef input_iterator<const wchar_t*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_many.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_many.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_many.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_many.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <locale>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef input_iterator<const char*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_monthname.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_monthname.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_monthname.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_monthname.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <locale>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef input_iterator<const char*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_monthname_wide.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_monthname_wide.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_monthname_wide.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_monthname_wide.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <locale>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef input_iterator<const wchar_t*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_one.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_one.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_one.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_one.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <locale>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef input_iterator<const char*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_time.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_time.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_time.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_time.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <locale>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef input_iterator<const char*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_time_wide.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_time_wide.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_time_wide.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_time_wide.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <locale>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef input_iterator<const wchar_t*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_weekday.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_weekday.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_weekday.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_weekday.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <locale>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef input_iterator<const char*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_weekday_wide.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_weekday_wide.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_weekday_wide.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_weekday_wide.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <locale>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef input_iterator<const wchar_t*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_year.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_year.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_year.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_year.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <locale>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef input_iterator<const char*> I;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put.byname/put1.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put.byname/put1.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put.byname/put1.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put.byname/put1.pass.cpp Fri Jan 4 21:21:01 2013
@@ -23,9 +23,9 @@
#include <locale>
#include <cassert>
-#include "../../../../iterators.h"
+#include "test_iterators.h"
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
typedef std::time_put_byname<char, output_iterator<char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/put1.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/put1.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/put1.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/put1.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <locale>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::time_put<char, output_iterator<char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/put2.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/put2.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/put2.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/put2.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <locale>
#include <cassert>
-#include "../../../../../iterators.h"
+#include "test_iterators.h"
typedef std::time_put<char, output_iterator<char*> > F;
Modified: libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/decimal_point.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/decimal_point.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/decimal_point.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/decimal_point.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <locale>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/grouping.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/grouping.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/grouping.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/grouping.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <locale>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/thousands_sep.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/thousands_sep.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/thousands_sep.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/thousands_sep.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <locale>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locales/locale/locale.cons/assign.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locales/locale/locale.cons/assign.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locales/locale/locale.cons/assign.pass.cpp (original)
+++ libcxx/trunk/test/localization/locales/locale/locale.cons/assign.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <cassert>
#include <new>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int new_called = 0;
Modified: libcxx/trunk/test/localization/locales/locale/locale.cons/char_pointer.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locales/locale/locale.cons/char_pointer.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locales/locale/locale.cons/char_pointer.pass.cpp (original)
+++ libcxx/trunk/test/localization/locales/locale/locale.cons/char_pointer.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <new>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int new_called = 0;
Modified: libcxx/trunk/test/localization/locales/locale/locale.cons/copy.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locales/locale/locale.cons/copy.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locales/locale/locale.cons/copy.pass.cpp (original)
+++ libcxx/trunk/test/localization/locales/locale/locale.cons/copy.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <cassert>
#include <new>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int new_called = 0;
Modified: libcxx/trunk/test/localization/locales/locale/locale.cons/default.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locales/locale/locale.cons/default.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locales/locale/locale.cons/default.pass.cpp (original)
+++ libcxx/trunk/test/localization/locales/locale/locale.cons/default.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <new>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int new_called = 0;
Modified: libcxx/trunk/test/localization/locales/locale/locale.cons/locale_char_pointer_cat.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locales/locale/locale.cons/locale_char_pointer_cat.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locales/locale/locale.cons/locale_char_pointer_cat.pass.cpp (original)
+++ libcxx/trunk/test/localization/locales/locale/locale.cons/locale_char_pointer_cat.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <new>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int new_called = 0;
Modified: libcxx/trunk/test/localization/locales/locale/locale.cons/locale_facetptr.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locales/locale/locale.cons/locale_facetptr.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locales/locale/locale.cons/locale_facetptr.pass.cpp (original)
+++ libcxx/trunk/test/localization/locales/locale/locale.cons/locale_facetptr.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <new>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int new_called = 0;
Modified: libcxx/trunk/test/localization/locales/locale/locale.cons/locale_locale_cat.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locales/locale/locale.cons/locale_locale_cat.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locales/locale/locale.cons/locale_locale_cat.pass.cpp (original)
+++ libcxx/trunk/test/localization/locales/locale/locale.cons/locale_locale_cat.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <new>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int new_called = 0;
Modified: libcxx/trunk/test/localization/locales/locale/locale.cons/locale_string_cat.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locales/locale/locale.cons/locale_string_cat.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locales/locale/locale.cons/locale_string_cat.pass.cpp (original)
+++ libcxx/trunk/test/localization/locales/locale/locale.cons/locale_string_cat.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <new>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int new_called = 0;
Modified: libcxx/trunk/test/localization/locales/locale/locale.cons/string.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locales/locale/locale.cons/string.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locales/locale/locale.cons/string.pass.cpp (original)
+++ libcxx/trunk/test/localization/locales/locale/locale.cons/string.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <new>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int new_called = 0;
Modified: libcxx/trunk/test/localization/locales/locale/locale.members/name.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locales/locale/locale.members/name.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locales/locale/locale.members/name.pass.cpp (original)
+++ libcxx/trunk/test/localization/locales/locale/locale.members/name.pass.cpp Fri Jan 4 21:21:01 2013
@@ -14,7 +14,7 @@
#include <locale>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locales/locale/locale.operators/eq.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locales/locale/locale.operators/eq.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locales/locale/locale.operators/eq.pass.cpp (original)
+++ libcxx/trunk/test/localization/locales/locale/locale.operators/eq.pass.cpp Fri Jan 4 21:21:01 2013
@@ -14,7 +14,7 @@
#include <locale>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/localization/locales/locale/locale.statics/global.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locales/locale/locale.statics/global.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locales/locale/locale.statics/global.pass.cpp (original)
+++ libcxx/trunk/test/localization/locales/locale/locale.statics/global.pass.cpp Fri Jan 4 21:21:01 2013
@@ -14,7 +14,7 @@
#include <locale>
#include <cassert>
-#include "../../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
void check(const std::locale& loc)
{
Modified: libcxx/trunk/test/numerics/c.math/cmath.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/numerics/c.math/cmath.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/numerics/c.math/cmath.pass.cpp (original)
+++ libcxx/trunk/test/numerics/c.math/cmath.pass.cpp Fri Jan 4 21:21:01 2013
@@ -13,7 +13,7 @@
#include <type_traits>
#include <cassert>
-#include "../../hexfloat.h"
+#include "hexfloat.h"
void test_abs()
{
Modified: libcxx/trunk/test/numerics/numeric.ops/accumulate/accumulate.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/numerics/numeric.ops/accumulate/accumulate.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/numerics/numeric.ops/accumulate/accumulate.pass.cpp (original)
+++ libcxx/trunk/test/numerics/numeric.ops/accumulate/accumulate.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <numeric>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter, class T>
void
Modified: libcxx/trunk/test/numerics/numeric.ops/accumulate/accumulate_op.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/numerics/numeric.ops/accumulate/accumulate_op.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/numerics/numeric.ops/accumulate/accumulate_op.pass.cpp (original)
+++ libcxx/trunk/test/numerics/numeric.ops/accumulate/accumulate_op.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter, class T>
void
Modified: libcxx/trunk/test/numerics/numeric.ops/adjacent.difference/adjacent_difference.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/numerics/numeric.ops/adjacent.difference/adjacent_difference.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/numerics/numeric.ops/adjacent.difference/adjacent_difference.pass.cpp (original)
+++ libcxx/trunk/test/numerics/numeric.ops/adjacent.difference/adjacent_difference.pass.cpp Fri Jan 4 21:21:01 2013
@@ -22,7 +22,7 @@
#include <numeric>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/numerics/numeric.ops/adjacent.difference/adjacent_difference_op.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/numerics/numeric.ops/adjacent.difference/adjacent_difference_op.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/numerics/numeric.ops/adjacent.difference/adjacent_difference_op.pass.cpp (original)
+++ libcxx/trunk/test/numerics/numeric.ops/adjacent.difference/adjacent_difference_op.pass.cpp Fri Jan 4 21:21:01 2013
@@ -23,7 +23,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/numerics/numeric.ops/inner.product/inner_product.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/numerics/numeric.ops/inner.product/inner_product.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/numerics/numeric.ops/inner.product/inner_product.pass.cpp (original)
+++ libcxx/trunk/test/numerics/numeric.ops/inner.product/inner_product.pass.cpp Fri Jan 4 21:21:01 2013
@@ -22,7 +22,7 @@
#include <numeric>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2, class T>
void
Modified: libcxx/trunk/test/numerics/numeric.ops/inner.product/inner_product_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/numerics/numeric.ops/inner.product/inner_product_comp.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/numerics/numeric.ops/inner.product/inner_product_comp.pass.cpp (original)
+++ libcxx/trunk/test/numerics/numeric.ops/inner.product/inner_product_comp.pass.cpp Fri Jan 4 21:21:01 2013
@@ -24,7 +24,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter1, class Iter2, class T>
void
Modified: libcxx/trunk/test/numerics/numeric.ops/numeric.iota/iota.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/numerics/numeric.ops/numeric.iota/iota.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/numerics/numeric.ops/numeric.iota/iota.pass.cpp (original)
+++ libcxx/trunk/test/numerics/numeric.ops/numeric.iota/iota.pass.cpp Fri Jan 4 21:21:01 2013
@@ -15,7 +15,7 @@
#include <numeric>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter>
void
Modified: libcxx/trunk/test/numerics/numeric.ops/partial.sum/partial_sum.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/numerics/numeric.ops/partial.sum/partial_sum.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/numerics/numeric.ops/partial.sum/partial_sum.pass.cpp (original)
+++ libcxx/trunk/test/numerics/numeric.ops/partial.sum/partial_sum.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <numeric>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Modified: libcxx/trunk/test/numerics/numeric.ops/partial.sum/partial_sum_op.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/numerics/numeric.ops/partial.sum/partial_sum_op.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/numerics/numeric.ops/partial.sum/partial_sum_op.pass.cpp (original)
+++ libcxx/trunk/test/numerics/numeric.ops/partial.sum/partial_sum_op.pass.cpp Fri Jan 4 21:21:01 2013
@@ -22,7 +22,7 @@
#include <functional>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class InIter, class OutIter>
void
Removed: libcxx/trunk/test/platform_support.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/platform_support.h?rev=171593&view=auto
==============================================================================
--- libcxx/trunk/test/platform_support.h (original)
+++ libcxx/trunk/test/platform_support.h (removed)
@@ -1,37 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// Define a bunch of macros that can be used in the tests instead of
-// implementation defined assumptions:
-// - locale names
-// - floating point number string output
-
-#ifndef PLATFORM_SUPPORT_H
-#define PLATFORM_SUPPORT_H
-
-// locale names
-#if _WIN32
-// WARNING: Windows does not support UTF-8 codepages.
-// Locales are "converted" using http://docs.moodle.org/dev/Table_of_locales
-#define LOCALE_en_US_UTF_8 "English_United States.1252"
-#define LOCALE_cs_CZ_ISO8859_2 "Czech_Czech Republic.1250"
-#define LOCALE_fr_FR_UTF_8 "French_France.1252"
-#define LOCALE_fr_CA_ISO8859_1 "French_Canada.1252"
-#define LOCALE_ru_RU_UTF_8 "Russian_Russia.1251"
-#define LOCALE_zh_CN_UTF_8 "Chinese_China.936"
-#else
-#define LOCALE_en_US_UTF_8 "en_US.UTF-8"
-#define LOCALE_cs_CZ_ISO8859_2 "cs_CZ.ISO8859-2"
-#define LOCALE_fr_FR_UTF_8 "fr_FR.UTF-8"
-#define LOCALE_fr_CA_ISO8859_1 "fr_CA.ISO8859-1"
-#define LOCALE_ru_RU_UTF_8 "ru_RU.UTF-8"
-#define LOCALE_zh_CN_UTF_8 "zh_CN.UTF-8"
-#endif
-
-#endif // PLATFORM_SUPPORT_H
Modified: libcxx/trunk/test/re/re.alg/re.alg.match/awk.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.alg/re.alg.match/awk.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.alg/re.alg.match/awk.pass.cpp (original)
+++ libcxx/trunk/test/re/re.alg/re.alg.match/awk.pass.cpp Fri Jan 4 21:21:01 2013
@@ -20,7 +20,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.alg/re.alg.match/basic.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.alg/re.alg.match/basic.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.alg/re.alg.match/basic.pass.cpp (original)
+++ libcxx/trunk/test/re/re.alg/re.alg.match/basic.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.alg/re.alg.match/ecma.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.alg/re.alg.match/ecma.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.alg/re.alg.match/ecma.pass.cpp (original)
+++ libcxx/trunk/test/re/re.alg/re.alg.match/ecma.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.alg/re.alg.match/egrep.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.alg/re.alg.match/egrep.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.alg/re.alg.match/egrep.pass.cpp (original)
+++ libcxx/trunk/test/re/re.alg/re.alg.match/egrep.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.alg/re.alg.match/extended.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.alg/re.alg.match/extended.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.alg/re.alg.match/extended.pass.cpp (original)
+++ libcxx/trunk/test/re/re.alg/re.alg.match/extended.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.alg/re.alg.match/grep.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.alg/re.alg.match/grep.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.alg/re.alg.match/grep.pass.cpp (original)
+++ libcxx/trunk/test/re/re.alg/re.alg.match/grep.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.alg/re.alg.replace/test1.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.alg/re.alg.replace/test1.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.alg/re.alg.replace/test1.pass.cpp (original)
+++ libcxx/trunk/test/re/re.alg/re.alg.replace/test1.pass.cpp Fri Jan 4 21:21:01 2013
@@ -22,7 +22,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.alg/re.alg.replace/test2.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.alg/re.alg.replace/test2.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.alg/re.alg.replace/test2.pass.cpp (original)
+++ libcxx/trunk/test/re/re.alg/re.alg.replace/test2.pass.cpp Fri Jan 4 21:21:01 2013
@@ -22,7 +22,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.alg/re.alg.search/awk.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.alg/re.alg.search/awk.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.alg/re.alg.search/awk.pass.cpp (original)
+++ libcxx/trunk/test/re/re.alg/re.alg.search/awk.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.alg/re.alg.search/basic.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.alg/re.alg.search/basic.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.alg/re.alg.search/basic.pass.cpp (original)
+++ libcxx/trunk/test/re/re.alg/re.alg.search/basic.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.alg/re.alg.search/ecma.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.alg/re.alg.search/ecma.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.alg/re.alg.search/ecma.pass.cpp (original)
+++ libcxx/trunk/test/re/re.alg/re.alg.search/ecma.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.alg/re.alg.search/egrep.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.alg/re.alg.search/egrep.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.alg/re.alg.search/egrep.pass.cpp (original)
+++ libcxx/trunk/test/re/re.alg/re.alg.search/egrep.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.alg/re.alg.search/extended.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.alg/re.alg.search/extended.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.alg/re.alg.search/extended.pass.cpp (original)
+++ libcxx/trunk/test/re/re.alg/re.alg.search/extended.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.alg/re.alg.search/grep.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.alg/re.alg.search/grep.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.alg/re.alg.search/grep.pass.cpp (original)
+++ libcxx/trunk/test/re/re.alg/re.alg.search/grep.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.regex/re.regex.assign/assign_iter_iter_flag.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.regex/re.regex.assign/assign_iter_iter_flag.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.regex/re.regex.assign/assign_iter_iter_flag.pass.cpp (original)
+++ libcxx/trunk/test/re/re.regex/re.regex.assign/assign_iter_iter_flag.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.regex/re.regex.construct/iter_iter.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.regex/re.regex.construct/iter_iter.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.regex/re.regex.construct/iter_iter.pass.cpp (original)
+++ libcxx/trunk/test/re/re.regex/re.regex.construct/iter_iter.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/re/re.regex/re.regex.construct/iter_iter_flg.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.regex/re.regex.construct/iter_iter_flg.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.regex/re.regex.construct/iter_iter_flg.pass.cpp (original)
+++ libcxx/trunk/test/re/re.regex/re.regex.construct/iter_iter_flg.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
template <class Iter>
void
Modified: libcxx/trunk/test/re/re.regex/re.regex.locale/imbue.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.regex/re.regex.locale/imbue.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.regex/re.regex.locale/imbue.pass.cpp (original)
+++ libcxx/trunk/test/re/re.regex/re.regex.locale/imbue.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <locale>
#include <cassert>
-#include "../../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/re/re.results/re.results.form/form1.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.results/re.results.form/form1.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.results/re.results.form/form1.pass.cpp (original)
+++ libcxx/trunk/test/re/re.results/re.results.form/form1.pass.cpp Fri Jan 4 21:21:01 2013
@@ -19,7 +19,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.results/re.results.form/form2.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.results/re.results.form/form2.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.results/re.results.form/form2.pass.cpp (original)
+++ libcxx/trunk/test/re/re.results/re.results.form/form2.pass.cpp Fri Jan 4 21:21:01 2013
@@ -21,7 +21,7 @@
#include <regex>
#include <cassert>
-#include "../../../iterators.h"
+#include "test_iterators.h"
#include "../../test_allocator.h"
int main()
Modified: libcxx/trunk/test/re/re.traits/default.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.traits/default.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.traits/default.pass.cpp (original)
+++ libcxx/trunk/test/re/re.traits/default.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <regex>
#include <cassert>
-#include "../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/re/re.traits/getloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.traits/getloc.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.traits/getloc.pass.cpp (original)
+++ libcxx/trunk/test/re/re.traits/getloc.pass.cpp Fri Jan 4 21:21:01 2013
@@ -16,7 +16,7 @@
#include <regex>
#include <cassert>
-#include "../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/re/re.traits/imbue.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.traits/imbue.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.traits/imbue.pass.cpp (original)
+++ libcxx/trunk/test/re/re.traits/imbue.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <locale>
#include <cassert>
-#include "../../platform_support.h" // locale name macros
+#include "platform_support.h" // locale name macros
int main()
{
Modified: libcxx/trunk/test/re/re.traits/lookup_classname.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.traits/lookup_classname.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.traits/lookup_classname.pass.cpp (original)
+++ libcxx/trunk/test/re/re.traits/lookup_classname.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <regex>
#include <cassert>
-#include "../../iterators.h"
+#include "test_iterators.h"
template <class char_type>
void
Modified: libcxx/trunk/test/re/re.traits/lookup_collatename.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.traits/lookup_collatename.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.traits/lookup_collatename.pass.cpp (original)
+++ libcxx/trunk/test/re/re.traits/lookup_collatename.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <regex>
#include <iterator>
#include <cassert>
-#include "../../iterators.h"
+#include "test_iterators.h"
template <class char_type>
void
Modified: libcxx/trunk/test/re/re.traits/transform.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.traits/transform.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.traits/transform.pass.cpp (original)
+++ libcxx/trunk/test/re/re.traits/transform.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <regex>
#include <cassert>
-#include "../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.traits/transform_primary.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.traits/transform_primary.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.traits/transform_primary.pass.cpp (original)
+++ libcxx/trunk/test/re/re.traits/transform_primary.pass.cpp Fri Jan 4 21:21:01 2013
@@ -18,7 +18,7 @@
#include <regex>
#include <cassert>
-#include "../../iterators.h"
+#include "test_iterators.h"
int main()
{
Modified: libcxx/trunk/test/re/re.traits/translate_nocase.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.traits/translate_nocase.pass.cpp?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.traits/translate_nocase.pass.cpp (original)
+++ libcxx/trunk/test/re/re.traits/translate_nocase.pass.cpp Fri Jan 4 21:21:01 2013
@@ -17,7 +17,7 @@
#include <regex>
#include <cassert>
-#include "../../platform_support.h"
+#include "platform_support.h"
int main()
{
Modified: libcxx/trunk/test/testit
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/testit?rev=171594&r1=171593&r2=171594&view=diff
==============================================================================
--- libcxx/trunk/test/testit (original)
+++ libcxx/trunk/test/testit Fri Jan 4 21:21:01 2013
@@ -40,6 +40,7 @@
then
OPTIONS="-std=c++0x -stdlib=libc++"
fi
+OPTIONS="$OPTIONS -I$LIBCXX_ROOT/test/support"
if [ -z "$HEADER_INCLUDE" ]
then
More information about the cfe-commits
mailing list