about summary refs log tree commit diff
diff options
context:
space:
mode:
authoryukang <moorekang@gmail.com>2023-03-12 07:50:39 +0800
committeryukang <moorekang@gmail.com>2023-03-12 07:50:39 +0800
commit2c66c8f9c623b03bc0d11d214936a51f28effaff (patch)
tree53296ad8690859863407d6cfb12aa6b0e76a079f
parent8a73f50d875840b8077b8ec080fa41881d7ce40d (diff)
downloadrust-2c66c8f9c623b03bc0d11d214936a51f28effaff.tar.gz
rust-2c66c8f9c623b03bc0d11d214936a51f28effaff.zip
Fix diff option conflict in UI test
-rw-r--r--tests/run-make/rustdoc-verify-output-files/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-make/rustdoc-verify-output-files/Makefile b/tests/run-make/rustdoc-verify-output-files/Makefile
index 0666122e8ab..ca921fd491d 100644
--- a/tests/run-make/rustdoc-verify-output-files/Makefile
+++ b/tests/run-make/rustdoc-verify-output-files/Makefile
@@ -14,7 +14,7 @@ all:
 	$(RUSTDOC) src/lib.rs --crate-name foobar --crate-type lib --out-dir $(OUTPUT_DIR)
 
 	# Check if everything exactly same
-	$(DIFF) -r -q $(OUTPUT_DIR) $(TMP_OUTPUT_DIR)
+	$(DIFF) -r $(OUTPUT_DIR) $(TMP_OUTPUT_DIR)
 
 	# Generate json doc on the same output
 	$(RUSTDOC) src/lib.rs --crate-name foobar --crate-type lib --out-dir $(OUTPUT_DIR) -Z unstable-options --output-format json
@@ -29,4 +29,4 @@ all:
 	$(RUSTDOC) src/lib.rs --crate-name foobar --crate-type lib --out-dir $(OUTPUT_DIR) -Z unstable-options --output-format json
 
 	# Check if all docs(including both json and html formats) are still the same after multiple compilations
-	$(DIFF) -r -q $(OUTPUT_DIR) $(TMP_OUTPUT_DIR)
+	$(DIFF) -r $(OUTPUT_DIR) $(TMP_OUTPUT_DIR)