summaryrefslogtreecommitdiffstats
path: root/libcxx/test/input.output/file.streams/fstreams
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/input.output/file.streams/fstreams')
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/filebuf.assign/move_assign.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/filebuf.assign/nonmember_swap.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/filebuf.cons/default.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/filebuf.cons/move.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/filebuf.members/open_pointer.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/overflow.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/pbackfail.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/seekoff.pass.cpp4
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.dat2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/fstream.assign/move_assign.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/fstream.assign/nonmember_swap.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/fstream.cons/move.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/ifstream.assign/move_assign.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/ifstream.assign/nonmember_swap.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/ifstream.cons/move.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/ofstream.assign/move_assign.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/ofstream.assign/nonmember_swap.pass.cpp2
-rw-r--r--libcxx/test/input.output/file.streams/fstreams/ofstream.cons/move.pass.cpp2
19 files changed, 20 insertions, 20 deletions
diff --git a/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/move_assign.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/move_assign.pass.cpp
index 8212dd14a3f..8dbf0ca54dd 100644
--- a/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/move_assign.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/move_assign.pass.cpp
@@ -50,5 +50,5 @@ int main()
assert(f2.sgetc() == L'2');
}
remove("test.dat");
-#endif
+#endif // _LIBCPP_MOVE
}
diff --git a/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/nonmember_swap.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/nonmember_swap.pass.cpp
index d3ecb47f0e2..9c2aa4f0859 100644
--- a/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/nonmember_swap.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/nonmember_swap.pass.cpp
@@ -12,7 +12,7 @@
// template <class charT, class traits = char_traits<charT> >
// class basic_filebuf
-// template <class charT, class traits>
+// template <class charT, class traits>
// void
// swap(basic_filebuf<charT, traits>& x, basic_filebuf<charT, traits>& y);
diff --git a/libcxx/test/input.output/file.streams/fstreams/filebuf.cons/default.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/filebuf.cons/default.pass.cpp
index 87fc38a526f..d66ccdc755e 100644
--- a/libcxx/test/input.output/file.streams/fstreams/filebuf.cons/default.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/filebuf.cons/default.pass.cpp
@@ -27,4 +27,4 @@ int main()
std::wfilebuf f;
assert(!f.is_open());
}
-}
+}
diff --git a/libcxx/test/input.output/file.streams/fstreams/filebuf.cons/move.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/filebuf.cons/move.pass.cpp
index 35aaac8404a..d25d4e89ed5 100644
--- a/libcxx/test/input.output/file.streams/fstreams/filebuf.cons/move.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/filebuf.cons/move.pass.cpp
@@ -48,5 +48,5 @@ int main()
assert(f2.sgetc() == L'2');
}
remove("test.dat");
-#endif
+#endif // _LIBCPP_MOVE
}
diff --git a/libcxx/test/input.output/file.streams/fstreams/filebuf.members/open_pointer.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/filebuf.members/open_pointer.pass.cpp
index 6790841c0d8..6939fe78f08 100644
--- a/libcxx/test/input.output/file.streams/fstreams/filebuf.members/open_pointer.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/filebuf.members/open_pointer.pass.cpp
@@ -46,4 +46,4 @@ int main()
assert(f.sbumpc() == L'3');
}
remove("test.dat");
-}
+}
diff --git a/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/overflow.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/overflow.pass.cpp
index 3e8a198936e..b0169fde22b 100644
--- a/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/overflow.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/overflow.pass.cpp
@@ -137,4 +137,4 @@ int main()
assert(f.sbumpc() == -1);
}
std::remove("overflow.dat");
-}
+}
diff --git a/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/pbackfail.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/pbackfail.pass.cpp
index c93faa74286..9058a628b90 100644
--- a/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/pbackfail.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/pbackfail.pass.cpp
@@ -53,4 +53,4 @@ int main()
assert(f.sbumpc() == 'a');
assert(f.sgetc() == '2');
}
-}
+}
diff --git a/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/seekoff.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/seekoff.pass.cpp
index 32d846e2a4f..6d7da9f0108 100644
--- a/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/seekoff.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/seekoff.pass.cpp
@@ -9,9 +9,9 @@
// <fstream>
-// pos_type seekoff(off_type off, ios_base::seekdir way,
+// pos_type seekoff(off_type off, ios_base::seekdir way,
// ios_base::openmode which = ios_base::in | ios_base::out);
-// pos_type seekpos(pos_type sp,
+// pos_type seekpos(pos_type sp,
// ios_base::openmode which = ios_base::in | ios_base::out);
// This test is not entirely portable
diff --git a/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.dat b/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.dat
index e2e107ac61a..28d14454c38 100644
--- a/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.dat
+++ b/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.dat
@@ -1 +1 @@
-123456789 \ No newline at end of file
+123456789
diff --git a/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.pass.cpp
index 1f6336277d0..6d2c5e58e8e 100644
--- a/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/underflow.pass.cpp
@@ -116,4 +116,4 @@ int main()
assert(f.sbumpc() == 0x4E53);
assert(f.sbumpc() == -1);
}
-}
+}
diff --git a/libcxx/test/input.output/file.streams/fstreams/fstream.assign/move_assign.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/fstream.assign/move_assign.pass.cpp
index 448bfd4435f..1f7f2a1b5be 100644
--- a/libcxx/test/input.output/file.streams/fstreams/fstream.assign/move_assign.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/fstream.assign/move_assign.pass.cpp
@@ -44,5 +44,5 @@ int main()
assert(x == 3.25);
}
std::remove("test.dat");
-#endif
+#endif // _LIBCPP_MOVE
}
diff --git a/libcxx/test/input.output/file.streams/fstreams/fstream.assign/nonmember_swap.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/fstream.assign/nonmember_swap.pass.cpp
index 0a9aabad860..3cd6793c432 100644
--- a/libcxx/test/input.output/file.streams/fstreams/fstream.assign/nonmember_swap.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/fstream.assign/nonmember_swap.pass.cpp
@@ -12,7 +12,7 @@
// template <class charT, class traits = char_traits<charT> >
// class basic_fstream
-// template <class charT, class traits>
+// template <class charT, class traits>
// void swap(basic_fstream<charT, traits>& x, basic_fstream<charT, traits>& y);
#include <fstream>
diff --git a/libcxx/test/input.output/file.streams/fstreams/fstream.cons/move.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/fstream.cons/move.pass.cpp
index 97b4b24ceae..efc1386d573 100644
--- a/libcxx/test/input.output/file.streams/fstreams/fstream.cons/move.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/fstream.cons/move.pass.cpp
@@ -42,5 +42,5 @@ int main()
assert(x == 3.25);
}
std::remove("test.dat");
-#endif
+#endif // _LIBCPP_MOVE
}
diff --git a/libcxx/test/input.output/file.streams/fstreams/ifstream.assign/move_assign.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/ifstream.assign/move_assign.pass.cpp
index e6ebab0b286..2b864fd05ad 100644
--- a/libcxx/test/input.output/file.streams/fstreams/ifstream.assign/move_assign.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/ifstream.assign/move_assign.pass.cpp
@@ -36,5 +36,5 @@ int main()
fs >> x;
assert(x == 3.25);
}
-#endif
+#endif // _LIBCPP_MOVE
}
diff --git a/libcxx/test/input.output/file.streams/fstreams/ifstream.assign/nonmember_swap.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/ifstream.assign/nonmember_swap.pass.cpp
index 94b5efb5546..b460a88e466 100644
--- a/libcxx/test/input.output/file.streams/fstreams/ifstream.assign/nonmember_swap.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/ifstream.assign/nonmember_swap.pass.cpp
@@ -12,7 +12,7 @@
// template <class charT, class traits = char_traits<charT> >
// class basic_ifstream
-// template <class charT, class traits>
+// template <class charT, class traits>
// void swap(basic_ifstream<charT, traits>& x, basic_ifstream<charT, traits>& y);
#include <fstream>
diff --git a/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/move.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/move.pass.cpp
index 85f3cc55bc1..b8ed752da3e 100644
--- a/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/move.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/move.pass.cpp
@@ -34,5 +34,5 @@ int main()
fs >> x;
assert(x == 3.25);
}
-#endif
+#endif // _LIBCPP_MOVE
}
diff --git a/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/move_assign.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/move_assign.pass.cpp
index 565181e6ddb..2d637a502d3 100644
--- a/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/move_assign.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/move_assign.pass.cpp
@@ -46,5 +46,5 @@ int main()
assert(x == 3.25);
}
remove("test.dat");
-#endif
+#endif // _LIBCPP_MOVE
}
diff --git a/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/nonmember_swap.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/nonmember_swap.pass.cpp
index 162a7a80e41..37f07b5fbb9 100644
--- a/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/nonmember_swap.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/nonmember_swap.pass.cpp
@@ -12,7 +12,7 @@
// template <class charT, class traits = char_traits<charT> >
// class basic_ofstream
-// template <class charT, class traits>
+// template <class charT, class traits>
// void swap(basic_ofstream<charT, traits>& x, basic_ofstream<charT, traits>& y);
#include <fstream>
diff --git a/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/move.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/move.pass.cpp
index cab73abddad..cacd615fbb0 100644
--- a/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/move.pass.cpp
+++ b/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/move.pass.cpp
@@ -44,5 +44,5 @@ int main()
assert(x == 3.25);
}
remove("test.dat");
-#endif
+#endif // _LIBCPP_MOVE
}
OpenPOWER on IntegriCloud