[PATCH] D83711: [AIX] Remove diff -a option on llvm-cov.test
Shuhong Liu via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 14 09:25:13 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG85bed2f381ea: [AIX] Remove diff -a option on llvm-cov.test (authored by ShuhongL).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D83711/new/
https://reviews.llvm.org/D83711
Files:
llvm/test/tools/llvm-cov/llvm-cov.test
Index: llvm/test/tools/llvm-cov/llvm-cov.test
===================================================================
--- llvm/test/tools/llvm-cov/llvm-cov.test
+++ llvm/test/tools/llvm-cov/llvm-cov.test
@@ -13,7 +13,7 @@
# Basic behaviour with no flags
RUN: llvm-cov gcov test.c 2> %t.err | FileCheck %s --check-prefixes=OUT,OUTFILE --match-full-lines --strict-whitespace
RUN: FileCheck %s --check-prefix=C --match-full-lines --strict-whitespace < test.cpp.gcov
-RUN: diff -aub test_no_options.h.gcov test.h.gcov
+RUN: diff -ub test_no_options.h.gcov test.h.gcov
RUN: count 0 < %t.err
# Same, but specifying the object directory
@@ -156,8 +156,8 @@
# Missing gcda file just gives 0 counts.
RUN: llvm-cov gcov test.c -gcda=no_such_gcda_file | FileCheck %s --check-prefix=NO-GCDA
-RUN: diff -aub test_no_gcda.cpp.gcov test.cpp.gcov
-RUN: diff -aub test_no_gcda.h.gcov test.h.gcov
+RUN: diff -ub test_no_gcda.cpp.gcov test.cpp.gcov
+RUN: diff -ub test_no_gcda.h.gcov test.h.gcov
NO-GCDA: File 'test.cpp'
NO-GCDA-NEXT: Lines executed:0.00% of 43
NO-GCDA-NEXT: Creating 'test.cpp.gcov'
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D83711.277868.patch
Type: text/x-patch
Size: 1100 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200714/1af6a5b2/attachment.bin>
More information about the llvm-commits
mailing list