[flang-commits] [flang] 46f08a4 - [flang] Fix RUN line in test from 3e782ba

Diana Picus via flang-commits flang-commits at lists.llvm.org
Fri Jun 10 04:39:19 PDT 2022


Author: Diana Picus
Date: 2022-06-10T11:36:52Z
New Revision: 46f08a4ee0e9169fdc153e2e4f9a5bb695372b27

URL: https://github.com/llvm/llvm-project/commit/46f08a4ee0e9169fdc153e2e4f9a5bb695372b27
DIFF: https://github.com/llvm/llvm-project/commit/46f08a4ee0e9169fdc153e2e4f9a5bb695372b27.diff

LOG: [flang] Fix RUN line in test from 3e782ba

The current RUN line leaves a parse-ir-error.s file around, which might
confuse the buildbots. Direct the output into the void instead (although
it would probably be better to direct it to FileCheck).

Added: 
    

Modified: 
    flang/test/Driver/parse-ir-error.f95

Removed: 
    


################################################################################
diff  --git a/flang/test/Driver/parse-ir-error.f95 b/flang/test/Driver/parse-ir-error.f95
index d10d71dc7754..1c8b205196fc 100644
--- a/flang/test/Driver/parse-ir-error.f95
+++ b/flang/test/Driver/parse-ir-error.f95
@@ -6,7 +6,7 @@
 ! RUN LINES
 !----------
 ! Input type is implicit (correctly assumed to be Fortran)
-! RUN: %flang_fc1 -S %s
+! RUN: %flang_fc1 -S -o /dev/null %s
 ! Input type is explicitly set as LLVM IR
 ! RUN: not %flang -S -x ir %s 2>&1 | FileCheck %s
 


        


More information about the flang-commits mailing list