From 8abc716d1912543f8e12d5236e5316cab5969ac5 Mon Sep 17 00:00:00 2001 From: "Joel E. Denny" Date: Sat, 12 Oct 2019 12:32:00 +0000 Subject: [PATCH] [lit] Fix a few oversights in r374651 that broke some bots git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@374653 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/MC/ARM/preserve-comments-arm.s | 2 +- utils/lit/tests/shtest-shell.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/MC/ARM/preserve-comments-arm.s b/test/MC/ARM/preserve-comments-arm.s index 4c480096c66..fe8f5081bb1 100644 --- a/test/MC/ARM/preserve-comments-arm.s +++ b/test/MC/ARM/preserve-comments-arm.s @@ -1,6 +1,6 @@ @RUN: llvm-mc -preserve-comments -n -triple arm-eabi < %s > %t @RUN: sed 's/#[C]omment/@Comment/g' %s > %t2 - @RUN: diff %t %t2 + @RUN: diff --strip-trailing-cr %t %t2 .text mov r0, r0 diff --git a/utils/lit/tests/shtest-shell.py b/utils/lit/tests/shtest-shell.py index adbe4dc56a1..9a6f2aac0a4 100644 --- a/utils/lit/tests/shtest-shell.py +++ b/utils/lit/tests/shtest-shell.py @@ -4,7 +4,7 @@ # FIXME: Temporarily dump test output so we can debug failing tests on # buildbots. # RUN: cat %t.out -# RUN: FileCheck --dump-input=fail --color -vv --input-file %t.out %s +# RUN: FileCheck --input-file %t.out %s # # END. -- 2.40.0