diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Misc/dev-fd-fs.c | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/test/Misc/dev-fd-fs.c b/test/Misc/dev-fd-fs.c index 2eff138f42..e35486ebe2 100644 --- a/test/Misc/dev-fd-fs.c +++ b/test/Misc/dev-fd-fs.c @@ -7,6 +7,24 @@ // // RUN: cat %s | %clang -x c /dev/fd/0 -E > %t // RUN: FileCheck --check-prefix DEV-FD-INPUT < %t %s - +// // DEV-FD-INPUT: int x; + + +// Check writing to /dev/fd named pipes. We use cat here as before to ensure we +// get a named pipe. +// +// RUN: %clang -x c %s -E -o /dev/fd/1 | cat > %t +// RUN: FileCheck --check-prefix DEV-FD-FIFO-OUTPUT < %t %s +// +// DEV-FD-FIFO-OUTPUT: int x; + + +// Check writing to /dev/fd regular files. +// +// RUN: %clang -x c %s -E -o /dev/fd/1 > %t +// RUN: FileCheck --check-prefix DEV-FD-REG-OUTPUT < %t %s +// +// DEV-FD-REG-OUTPUT: int x; + int x; |