From 678bd84c4dfe6764b88698d442bb2afb2f5c811b Mon Sep 17 00:00:00 2001 From: Sourabh Singh Tomar Date: Wed, 13 May 2020 14:27:53 +0530 Subject: [PATCH] [DebugInfo] Fixes windows bot failure due to a test failure This fixes failures on windows bot specifically: http://lab.llvm.org:8011/builders/lld-x86_64-win/builds/445 and http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-windows10pro-fast/ builds/32314 * TEST 'LLVM :: DebugInfo/X86/Fortran-DIModule.ll' FAILED * Script: -- : 'RUN: at line 2'; c:\ps4-buildslave2\lld-x86_64-win\build\bin\llc.exe -mtriple=x86_64-pc-windows-gnu c:\ps4-buildslave2\lld-x86_64-win\llvm-project\llvm\test\DebugInfo\X86\Fortran-DIModule.ll -filetype=obj -o - | c:\ps4-buildslave2\lld-x86_64-win\build\bin\llvm-dwarfdump.exe - | c:\ps4-buildslave2\lld-x86_64-win\build\bin\filecheck.exe c:\ps4-buildslave2\lld-x86_64-win\llvm-project\llvm\test\DebugInfo\X86\Fortran-DIModule.ll -- Exit Code: 1 error: command failed with exit status: 1 --- llvm/test/DebugInfo/X86/Fortran-DIModule.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/DebugInfo/X86/Fortran-DIModule.ll b/llvm/test/DebugInfo/X86/Fortran-DIModule.ll index 33500df..0cfe696 100644 --- a/llvm/test/DebugInfo/X86/Fortran-DIModule.ll +++ b/llvm/test/DebugInfo/X86/Fortran-DIModule.ll @@ -1,5 +1,5 @@ ; This test checks attributes of a Fortran module. -; RUN: %llc_dwarf %s -filetype=obj -o - | \ +; RUN: %llc_dwarf -mtriple=x86_64-unknown-linux-gnu %s -filetype=obj -o - | \ ; RUN: llvm-dwarfdump - | FileCheck %s ; CHECK: DW_TAG_module -- 2.7.4