forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MC] Fix regression tests on Windows when git “core.autocrlf” is set …
…to true. Differential Revision: https://reviews.llvm.org/D39737 This is the second attempt to commit this. The test was broken on Linux in the first attempt. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@318560 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
4 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# binary files | ||
test/Object/Inputs/*.a-* binary | ||
test/tools/dsymutil/Inputs/* binary | ||
test/tools/llvm-ar/Inputs/*.lib binary | ||
test/tools/llvm-objdump/Inputs/*.a binary | ||
test/tools/llvm-rc/Inputs/* binary | ||
test/tools/llvm-strings/Inputs/numbers binary | ||
test/MC/AsmParser/incbin_abcd binary | ||
test/YAMLParser/spec-09-02.test binary | ||
|
||
# Windows line ending test | ||
test/MC/AsmParser/preserve-comments-crlf.s text eol=crlf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#RUN: llvm-mc -preserve-comments -n -triple i386-linux-gnu < %s > %t | ||
#RUN: diff --strip-trailing-cr %s %t | ||
.text | ||
|
||
foo: #Comment here | ||
#comment here | ||
nop | ||
#if DIRECTIVE COMMENT | ||
## WHOLE LINE COMMENT | ||
cmpl $196, %eax ## EOL COMMENT | ||
#endif | ||
.ident "clang version 3.9.0" | ||
.section ".note.GNU-stack","",@progbits |