[cfe-commits] [libcxx] r113403 - in /libcxx/trunk: test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ test/containers/container.adaptors/priority.queue/priqueue.cons/ test/containers/container.adaptors/priority.queue/priqueue.members/ test/containers/container.adaptors/queue/queue.cons.alloc/ test/containers/container.adaptors/queue/queue.cons/ test/containers/container.adaptors/queue/queue.defn/ test/containers/container.adaptors/stack/stack.cons.alloc/ test/containers/container.adaptors/stack/sta...

Howard Hinnant hhinnant at apple.com
Wed Sep 8 13:31:42 PDT 2010


Author: hhinnant
Date: Wed Sep  8 15:31:42 2010
New Revision: 113403

URL: http://llvm.org/viewvc/llvm-project?rev=113403&view=rev
Log:
Updated by-chapter-summary with weekly test results, and fixed up some bad paths in some tests caused by aligning the test suite with N3126.

Modified:
    libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_cont_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_rcont_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_copy_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_move_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/assign_move.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_comp.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_comp_rcontainer.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_default.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_iter_iter_comp_rcont.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_move.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.members/emplace.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.members/push_rvalue.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_container_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_queue_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_rcontainer_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_rqueue_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_default.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_move.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_rcontainer.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/assign_move.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/emplace.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/push_rv.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_container_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_copy_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_rcontainer_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_rqueue_alloc.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_default.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_move.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_rcontainer.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/assign_move.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/emplace.pass.cpp
    libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/push_rv.pass.cpp
    libcxx/trunk/www/libcxx_by_chapter.pdf

Modified: libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -15,7 +15,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../test_allocator.h"
+#include "../../../test_allocator.h"
 
 template <class T>
 struct test

Modified: libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -15,7 +15,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../test_allocator.h"
+#include "../../../test_allocator.h"
 
 template <class T>
 struct test

Modified: libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_cont_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_cont_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_cont_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_cont_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -16,7 +16,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../test_allocator.h"
+#include "../../../test_allocator.h"
 
 template <class C>
 C

Modified: libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_rcont_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_rcont_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_rcont_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_rcont_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -16,7 +16,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../test_allocator.h"
+#include "../../../test_allocator.h"
 
 template <class C>
 C

Modified: libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_copy_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_copy_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_copy_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_copy_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -25,7 +25,7 @@
     return c;
 }
 
-#include "../../../../test_allocator.h"
+#include "../../../test_allocator.h"
 
 template <class T>
 struct test

Modified: libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_move_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_move_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_move_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_move_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -15,7 +15,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../MoveOnly.h"
+#include "../../../MoveOnly.h"
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 
@@ -29,7 +29,7 @@
     return c;
 }
 
-#include "../../../../test_allocator.h"
+#include "../../../test_allocator.h"
 
 template <class T>
 struct test

Modified: libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/assign_move.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/assign_move.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/assign_move.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/assign_move.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../MoveOnly.h"
+#include "../../../MoveOnly.h"
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 

Modified: libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_comp.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_comp.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_comp.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../stack_allocator.h"
+#include "../../../stack_allocator.h"
 
 int main()
 {

Modified: libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_comp_rcontainer.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_comp_rcontainer.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_comp_rcontainer.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_comp_rcontainer.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../MoveOnly.h"
+#include "../../../MoveOnly.h"
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 

Modified: libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_default.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_default.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_default.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_default.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../stack_allocator.h"
+#include "../../../stack_allocator.h"
 
 int main()
 {

Modified: libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_iter_iter_comp_rcont.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_iter_iter_comp_rcont.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_iter_iter_comp_rcont.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_iter_iter_comp_rcont.pass.cpp Wed Sep  8 15:31:42 2010
@@ -16,7 +16,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../MoveOnly.h"
+#include "../../../MoveOnly.h"
 
 int main()
 {

Modified: libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_move.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_move.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_move.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.cons/ctor_move.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../MoveOnly.h"
+#include "../../../MoveOnly.h"
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 

Modified: libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.members/emplace.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.members/emplace.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.members/emplace.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.members/emplace.pass.cpp Wed Sep  8 15:31:42 2010
@@ -16,7 +16,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../Emplaceable.h"
+#include "../../../Emplaceable.h"
 
 int main()
 {

Modified: libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.members/push_rvalue.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.members/push_rvalue.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.members/push_rvalue.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/priority.queue/priqueue.members/push_rvalue.pass.cpp Wed Sep  8 15:31:42 2010
@@ -16,7 +16,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../MoveOnly.h"
+#include "../../../MoveOnly.h"
 
 int main()
 {

Modified: libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -15,7 +15,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../test_allocator.h"
+#include "../../../test_allocator.h"
 
 struct test
     : private std::queue<int, std::deque<int, test_allocator<int> > >

Modified: libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_container_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_container_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_container_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_container_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -15,7 +15,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../test_allocator.h"
+#include "../../../test_allocator.h"
 
 template <class C>
 C

Modified: libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_queue_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_queue_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_queue_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_queue_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -15,7 +15,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../test_allocator.h"
+#include "../../../test_allocator.h"
 
 template <class C>
 C

Modified: libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_rcontainer_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_rcontainer_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_rcontainer_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_rcontainer_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -15,8 +15,8 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../test_allocator.h"
-#include "../../../../MoveOnly.h"
+#include "../../../test_allocator.h"
+#include "../../../MoveOnly.h"
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 

Modified: libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_rqueue_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_rqueue_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_rqueue_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/queue/queue.cons.alloc/ctor_rqueue_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -15,8 +15,8 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../test_allocator.h"
-#include "../../../../MoveOnly.h"
+#include "../../../test_allocator.h"
+#include "../../../MoveOnly.h"
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 

Modified: libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_default.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_default.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_default.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_default.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../stack_allocator.h"
+#include "../../../stack_allocator.h"
 
 int main()
 {

Modified: libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_move.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_move.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_move.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_move.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../MoveOnly.h"
+#include "../../../MoveOnly.h"
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 

Modified: libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_rcontainer.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_rcontainer.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_rcontainer.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/queue/queue.cons/ctor_rcontainer.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../MoveOnly.h"
+#include "../../../MoveOnly.h"
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 

Modified: libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/assign_move.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/assign_move.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/assign_move.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/assign_move.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../MoveOnly.h"
+#include "../../../MoveOnly.h"
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 

Modified: libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/emplace.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/emplace.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/emplace.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/emplace.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../Emplaceable.h"
+#include "../../../Emplaceable.h"
 
 int main()
 {

Modified: libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/push_rv.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/push_rv.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/push_rv.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/queue/queue.defn/push_rv.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <queue>
 #include <cassert>
 
-#include "../../../../MoveOnly.h"
+#include "../../../MoveOnly.h"
 
 int main()
 {

Modified: libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -15,7 +15,7 @@
 #include <stack>
 #include <cassert>
 
-#include "../../../../test_allocator.h"
+#include "../../../test_allocator.h"
 
 struct test
     : private std::stack<int, std::deque<int, test_allocator<int> > >

Modified: libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_container_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_container_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_container_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_container_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -15,7 +15,7 @@
 #include <stack>
 #include <cassert>
 
-#include "../../../../test_allocator.h"
+#include "../../../test_allocator.h"
 
 template <class C>
 C

Modified: libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_copy_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_copy_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_copy_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_copy_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -15,7 +15,7 @@
 #include <stack>
 #include <cassert>
 
-#include "../../../../test_allocator.h"
+#include "../../../test_allocator.h"
 
 template <class C>
 C

Modified: libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_rcontainer_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_rcontainer_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_rcontainer_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_rcontainer_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -15,8 +15,8 @@
 #include <stack>
 #include <cassert>
 
-#include "../../../../test_allocator.h"
-#include "../../../../MoveOnly.h"
+#include "../../../test_allocator.h"
+#include "../../../MoveOnly.h"
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 

Modified: libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_rqueue_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_rqueue_alloc.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_rqueue_alloc.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/stack/stack.cons.alloc/ctor_rqueue_alloc.pass.cpp Wed Sep  8 15:31:42 2010
@@ -15,8 +15,8 @@
 #include <stack>
 #include <cassert>
 
-#include "../../../../test_allocator.h"
-#include "../../../../MoveOnly.h"
+#include "../../../test_allocator.h"
+#include "../../../MoveOnly.h"
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 

Modified: libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_default.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_default.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_default.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_default.pass.cpp Wed Sep  8 15:31:42 2010
@@ -15,7 +15,7 @@
 #include <vector>
 #include <cassert>
 
-#include "../../../../stack_allocator.h"
+#include "../../../stack_allocator.h"
 
 int main()
 {

Modified: libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_move.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_move.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_move.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_move.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <stack>
 #include <cassert>
 
-#include "../../../../MoveOnly.h"
+#include "../../../MoveOnly.h"
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 

Modified: libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_rcontainer.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_rcontainer.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_rcontainer.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/stack/stack.cons/ctor_rcontainer.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <stack>
 #include <cassert>
 
-#include "../../../../MoveOnly.h"
+#include "../../../MoveOnly.h"
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 

Modified: libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/assign_move.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/assign_move.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/assign_move.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/assign_move.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <stack>
 #include <cassert>
 
-#include "../../../../MoveOnly.h"
+#include "../../../MoveOnly.h"
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 

Modified: libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/emplace.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/emplace.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/emplace.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/emplace.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <stack>
 #include <cassert>
 
-#include "../../../../Emplaceable.h"
+#include "../../../Emplaceable.h"
 
 int main()
 {

Modified: libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/push_rv.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/push_rv.pass.cpp?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
--- libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/push_rv.pass.cpp (original)
+++ libcxx/trunk/test/containers/container.adaptors/stack/stack.defn/push_rv.pass.cpp Wed Sep  8 15:31:42 2010
@@ -14,7 +14,7 @@
 #include <stack>
 #include <cassert>
 
-#include "../../../../MoveOnly.h"
+#include "../../../MoveOnly.h"
 
 int main()
 {

Modified: libcxx/trunk/www/libcxx_by_chapter.pdf
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/www/libcxx_by_chapter.pdf?rev=113403&r1=113402&r2=113403&view=diff
==============================================================================
Binary files - no diff available.





More information about the cfe-commits mailing list