[llvm] ef0c084 - Add missing `-o -` to a recent test

David Zarzycki via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 11 03:00:35 PDT 2020


Author: David Zarzycki
Date: 2020-08-11T06:00:11-04:00
New Revision: ef0c0844fef6b1ee2497e64363fcacee2ff1b107

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

LOG: Add missing `-o -` to a recent test

Caught with a build-system that remounts the source directory read-only.

Added: 
    

Modified: 
    llvm/test/CodeGen/PowerPC/aix-static-init-no-unique-module-id.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/PowerPC/aix-static-init-no-unique-module-id.ll b/llvm/test/CodeGen/PowerPC/aix-static-init-no-unique-module-id.ll
index eb49085b9781..48954e6cec9b 100644
--- a/llvm/test/CodeGen/PowerPC/aix-static-init-no-unique-module-id.ll
+++ b/llvm/test/CodeGen/PowerPC/aix-static-init-no-unique-module-id.ll
@@ -1,5 +1,5 @@
-; RUN: not --crash llc -mtriple powerpc-ibm-aix-xcoff %s 2>&1 | FileCheck %s
-; RUN: not --crash llc -mtriple powerpc64-ibm-aix-xcoff %s 2>&1 | FileCheck %s
+; RUN: not --crash llc -mtriple powerpc-ibm-aix-xcoff -o - %s 2>&1 | FileCheck %s
+; RUN: not --crash llc -mtriple powerpc64-ibm-aix-xcoff -o - %s 2>&1 | FileCheck %s
 
 @llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @foo, i8* null }]
 


        


More information about the llvm-commits mailing list