This patch adds logic in the InputOutputTestAction frontend action for
reading input from stdin. Without this patch the following fails:
```
flang-new -fc1 -test-io -
```
The implementation of `InputOutputTestAction` is cleaned-up and a test
for reading from stdin is added.
Note that there's a difference between `-test-io` and e.g. `-E` in terms
of file I/O. The frontend action for the former handles all file I/O on
it's own. Conversely, the action corresponding to -E relies on the
prescanner API to handle this.
Currently we can't test reading from stdin for `flang-new -`. In this
case `libclangDriver` assumes `-x -c`. This in turn leads to `flang-new
-cc1`, which is not supported.
45 lines
1.5 KiB
Fortran
45 lines
1.5 KiB
Fortran
! Verify that reading from stdin works as expected
|
|
|
|
! REQUIRES: new-flang-driver
|
|
|
|
!--------------------------
|
|
! FLANG DRIVER (flang-new)
|
|
!--------------------------
|
|
! TODO: Add support for `flang-new -`
|
|
! Currently `bin/flang-new -E -` defaults to `-x c` and e.g. F90 is not allowed
|
|
! in `-x <input-type>` (see `clang::driver::types::canTypeBeUserSpecified` in
|
|
! Types.cpp)
|
|
|
|
!---------------------------------------
|
|
! FLANG FRONTEND DRIVER (flang-new -fc1)
|
|
!---------------------------------------
|
|
! Test `-E` - for the corresponding frontend actions the driver relies on the prescanner API to handle file I/O
|
|
! RUN: cat %s | flang-new -fc1 -E | FileCheck %s --check-prefix=PP-NOT-DEFINED
|
|
! RUN: cat %s | flang-new -fc1 -DNEW -E | FileCheck %s --check-prefix=PP-DEFINED
|
|
|
|
! Test `-test-io` - for the corresponding frontend action (`InputOutputTestAction`) the driver handles the file I/O on its own
|
|
! the corresponding action (`PrintPreprocessedAction`)
|
|
! RUN: cat %s | flang-new -fc1 -test-io | FileCheck %s --check-prefix=IO --match-full-lines
|
|
! RUN: cat %s | flang-new -fc1 -DNEW -test-io | FileCheck %s --check-prefix=IO --match-full-lines
|
|
|
|
!-------------------------
|
|
! EXPECTED OUTPUT for `-E`
|
|
!-------------------------
|
|
! PP-NOT-DEFINED: program b
|
|
! PP-DEFINED: program a
|
|
|
|
!-------------------------------
|
|
! EXPECTED OUTPUT for `-test-io`
|
|
!-------------------------------
|
|
! IO: #ifdef NEW
|
|
! IO-NEXT: Program A
|
|
! IO-NEXT: #else
|
|
! IO-NEXT: Program B
|
|
! IO-NEXT: #endif
|
|
|
|
#ifdef NEW
|
|
Program A
|
|
#else
|
|
Program B
|
|
#endif
|