From 483cf2454756d623ea202c8ae733d9a954b9a8d7 Mon Sep 17 00:00:00 2001 From: Alexis Hunt Date: Mon, 18 Jul 2011 23:51:21 +0000 Subject: Make all fstream tests use tmpnam if creating files, rather than hard-coded names. llvm-svn: 135444 --- .../input.output/file.streams/fstreams/fstream.cons/string.pass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcxx/test/input.output/file.streams/fstreams/fstream.cons/string.pass.cpp') diff --git a/libcxx/test/input.output/file.streams/fstreams/fstream.cons/string.pass.cpp b/libcxx/test/input.output/file.streams/fstreams/fstream.cons/string.pass.cpp index c2872913f9f..23795f010a5 100644 --- a/libcxx/test/input.output/file.streams/fstreams/fstream.cons/string.pass.cpp +++ b/libcxx/test/input.output/file.streams/fstreams/fstream.cons/string.pass.cpp @@ -19,7 +19,7 @@ int main() { - char temp [L_tmpnam]; + char temp[L_tmpnam]; tmpnam(temp); { std::fstream fs(std::string(temp), -- cgit v1.2.3