File tree 1 file changed +2
-2
lines changed
tests/run-make/rustdoc-verify-output-files
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 14
14
$(RUSTDOC) src/lib.rs --crate-name foobar --crate-type lib --out-dir $(OUTPUT_DIR)
15
15
16
16
# Check if everything exactly same
17
- $(DIFF) -r -q $(OUTPUT_DIR) $(TMP_OUTPUT_DIR)
17
+ $(DIFF) -r $(OUTPUT_DIR) $(TMP_OUTPUT_DIR)
18
18
19
19
# Generate json doc on the same output
20
20
$(RUSTDOC) src/lib.rs --crate-name foobar --crate-type lib --out-dir $(OUTPUT_DIR) -Z unstable-options --output-format json
29
29
$(RUSTDOC) src/lib.rs --crate-name foobar --crate-type lib --out-dir $(OUTPUT_DIR) -Z unstable-options --output-format json
30
30
31
31
# Check if all docs(including both json and html formats) are still the same after multiple compilations
32
- $(DIFF) -r -q $(OUTPUT_DIR) $(TMP_OUTPUT_DIR)
32
+ $(DIFF) -r $(OUTPUT_DIR) $(TMP_OUTPUT_DIR)
You can’t perform that action at this time.
0 commit comments