diff --git a/test/4-describe-data-3-zero-delim.sh b/test/4-describe-data-3-zero-delim.sh index 2d6738b03..c11c31a60 100755 --- a/test/4-describe-data-3-zero-delim.sh +++ b/test/4-describe-data-3-zero-delim.sh @@ -71,7 +71,7 @@ if ! $DUB describe --compiler=$DC --data-0 --data-list \ die 'Printing null-delimited list-style project data failed!' fi -if ! diff -Z "$temp_file_normal" "$temp_file_zero_delim"; then +if ! diff "$temp_file_normal" "$temp_file_zero_delim"; then die 'The null-delimited list-style project data did not match the expected output!' fi @@ -86,7 +86,7 @@ if ! $DUB describe --compiler=$DC --data-0 --import-paths \ die 'Printing null-delimited --import-paths failed!' fi -if ! diff -Z -B "$temp_file_normal" "$temp_file_zero_delim"; then +if ! diff "$temp_file_normal" "$temp_file_zero_delim"; then die 'The null-delimited --import-paths data did not match the expected output!' fi @@ -107,7 +107,7 @@ if ! $DUB describe --compiler=$DC --data-0 --data=versions \ die 'Printing null-delimited dmd-style --data=versions failed!' fi -if ! diff -Z "$temp_file_normal" "$temp_file_zero_delim"; then +if ! diff "$temp_file_normal" "$temp_file_zero_delim"; then die 'The null-delimited dmd-style --data=versions did not match the expected output!' fi @@ -122,6 +122,6 @@ if ! $DUB describe --compiler=$DC --data-0 --data=source-files \ die 'Printing null-delimited dmd-style --data=source-files failed!' fi -if ! diff -Z "$temp_file_normal" "$temp_file_zero_delim"; then +if ! diff "$temp_file_normal" "$temp_file_zero_delim"; then die 'The null-delimited dmd-style --data=source-files did not match the expected output!' fi