[flang] Fix a test (use %s instead of $s)
authorAndrzej Warzynski <andrzej.warzynski@arm.com>
Mon, 12 Apr 2021 12:32:57 +0000 (12:32 +0000)
committerAndrzej Warzynski <andrzej.warzynski@arm.com>
Tue, 13 Apr 2021 10:03:07 +0000 (10:03 +0000)
commit4217e6bf95f56d7c11684403687d20a7ef79ba09
treed156c7fe46d1cfd0fac791ed57a3f0baf039a95a
parentfa936b610fd019b73de82f61de83bae553251fdb
[flang] Fix a test (use %s instead of $s)

With the typo ($S instead of %s), the driver was expecting
input from stdin. In such cases, it prints:
```
Enter Fortran source
Use EOF character (^D) to end file
```
This was piped to FileCheck. Together with the available `CHECK-NOT`
statement, this was sufficient for the test to pass (incorrectly).

This patch makes sure that the provided input file is used instead of
stdin.

Differential Revision: https://reviews.llvm.org/D100301
flang/test/Semantics/call17.f90