[PATCH] D71036: Use diff -b on zlib tests so they pass on Windows

Amy Huang via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 5 11:40:08 PST 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rG23e63a906d03: Use diff -b on zlib tests so they pass on Windows (authored by akhuang).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D71036/new/

https://reviews.llvm.org/D71036

Files:
  llvm/test/tools/llvm-profdata/profile-symbol-list-compress.test
  llvm/test/tools/llvm-profdata/roundtrip-compress.test


Index: llvm/test/tools/llvm-profdata/roundtrip-compress.test
===================================================================
--- llvm/test/tools/llvm-profdata/roundtrip-compress.test
+++ llvm/test/tools/llvm-profdata/roundtrip-compress.test
@@ -7,4 +7,4 @@
 RUN: llvm-profdata merge --sample --binary -output=%t.2.profdata %S/Inputs/sample-profile.proftext
 RUN: llvm-profdata merge --sample --extbinary -compress-all-sections -output=%t.3.profdata %t.2.profdata
 RUN: llvm-profdata merge --sample --text -output=%t.2.proftext %t.3.profdata
-RUN: diff %t.2.proftext %S/Inputs/sample-profile.proftext
+RUN: diff -b %t.2.proftext %S/Inputs/sample-profile.proftext
Index: llvm/test/tools/llvm-profdata/profile-symbol-list-compress.test
===================================================================
--- llvm/test/tools/llvm-profdata/profile-symbol-list-compress.test
+++ llvm/test/tools/llvm-profdata/profile-symbol-list-compress.test
@@ -3,4 +3,4 @@
 ; RUN: llvm-profdata merge -sample -extbinary -compress-all-sections -prof-sym-list=%S/Inputs/profile-symbol-list-2.text %S/Inputs/sample-profile.proftext -o %t.2.output
 ; RUN: llvm-profdata merge -sample -extbinary -compress-all-sections %t.1.output %t.2.output -o %t.3.output
 ; RUN: llvm-profdata show -sample -show-prof-sym-list %t.3.output > %t.4.output
-; RUN: diff %S/Inputs/profile-symbol-list.expected %t.4.output
+; RUN: diff -b %S/Inputs/profile-symbol-list.expected %t.4.output


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D71036.232421.patch
Type: text/x-patch
Size: 1449 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191205/1f85308a/attachment.bin>


More information about the llvm-commits mailing list