2022-08-23 00:00:00 +00:00
|
|
|
include ../tools.mk
|
2018-11-13 18:43:50 +00:00
|
|
|
|
|
|
|
# This test verifies that rustdoc doesn't ICE when it encounters an IO error
|
|
|
|
# while generating files. Ideally this would be a rustdoc-ui test, so we could
|
|
|
|
# verify the error message as well.
|
|
|
|
|
2019-01-06 21:27:57 +00:00
|
|
|
# ignore-windows
|
|
|
|
# The test uses `chmod`.
|
2018-11-13 18:43:50 +00:00
|
|
|
|
2019-01-06 21:27:57 +00:00
|
|
|
OUTPUT_DIR := "$(TMPDIR)/rustdoc-io-error"
|
2018-11-13 18:43:50 +00:00
|
|
|
|
|
|
|
# This test operates by creating a temporary directory and modifying its
|
|
|
|
# permissions so that it is not writable. We have to take special care to set
|
|
|
|
# the permissions back to normal so that it's able to be deleted later.
|
|
|
|
all:
|
|
|
|
mkdir -p $(OUTPUT_DIR)
|
|
|
|
chmod u-w $(OUTPUT_DIR)
|
|
|
|
-$(shell $(RUSTDOC) -o $(OUTPUT_DIR) foo.rs)
|
|
|
|
chmod u+w $(OUTPUT_DIR)
|
|
|
|
exit $($(.SHELLSTATUS) -eq 1)
|