We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1435ee2 commit 8a76834Copy full SHA for 8a76834
tests.sh
@@ -27,7 +27,8 @@ my_diff() {
27
file_a=$1
28
file_b=$2
29
# Fix Windows path separators (\\) in the output to look like UNIX ones (/)
30
- diff $file_a <(cat $file_b | sed 's~\\\\~/~g')
+ # and convert CRLF to LF
31
+ diff $file_a <(cat $file_b | sed 's~\\\\~/~g' | tr -d '\r')
32
}
33
34
# armv7r-none-eabi tests
0 commit comments