From: Rafael Espindola Date: Mon, 13 Mar 2017 20:00:25 +0000 (+0000) Subject: Bring back r297624. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=37e8db6fe5f77e9be37f031c75bc683898c0ba06;p=llvm Bring back r297624. The issues was just a missing REQUIRES in the test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297661 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/raw_ostream.cpp b/lib/Support/raw_ostream.cpp index d073802db93..5deab5de4f6 100644 --- a/lib/Support/raw_ostream.cpp +++ b/lib/Support/raw_ostream.cpp @@ -473,7 +473,7 @@ static int getFD(StringRef Filename, std::error_code &EC, // possible. if (!(Flags & sys::fs::F_Text)) sys::ChangeStdoutToBinary(); - return STDOUT_FILENO; + return dup(STDOUT_FILENO); } int FD; diff --git a/test/Other/writing-to-stdout.ll b/test/Other/writing-to-stdout.ll new file mode 100644 index 00000000000..e3dee782ce6 --- /dev/null +++ b/test/Other/writing-to-stdout.ll @@ -0,0 +1,16 @@ +; REQUIRES: default_triple + +; Often LLVM tools use "-" to indicate that output should be written to stdout +; instead of a file. This behaviour is implemented by the raw_fd_ostream class. +; This test verifies that when doing so multiple times we don't try to access a +; closed STDOUT_FILENO. The exact options used in this test are unimportant, as +; long as they write to stdout using raw_fd_ostream. +; RUN: llc %s -o=- -pass-remarks-output=- -filetype=asm | FileCheck %s +; foobar should appear as a function somewhere in the assembly file. +; CHECK: foobar +; !Analysis appears at the start of pass-remarks-output. +; CHECK: !Analysis + +define void @foobar() { + ret void +} diff --git a/unittests/Support/raw_ostream_test.cpp b/unittests/Support/raw_ostream_test.cpp index f87d2f60d16..777e555949e 100644 --- a/unittests/Support/raw_ostream_test.cpp +++ b/unittests/Support/raw_ostream_test.cpp @@ -9,6 +9,7 @@ #include "gtest/gtest.h" #include "llvm/ADT/SmallString.h" +#include "llvm/Support/FileSystem.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" @@ -330,4 +331,11 @@ TEST(raw_ostreamTest, FormattedHexBytes) { "0007: 68 69 6a 6b 6c |hijkl|", format_bytes_with_ascii_str(B.take_front(12), 0, 7, 1)); } + +TEST(raw_fd_ostreamTest, multiple_raw_fd_ostream_to_stdout) { + std::error_code EC; + + { raw_fd_ostream("-", EC, sys::fs::OpenFlags::F_None); } + { raw_fd_ostream("-", EC, sys::fs::OpenFlags::F_None); } +} }