File: Makefile

package info (click to toggle)
rustc 1.70.0%2Bdfsg1-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 722,120 kB
  • sloc: xml: 147,962; javascript: 10,210; sh: 8,590; python: 8,220; ansic: 5,901; cpp: 4,635; makefile: 4,001; asm: 2,856
file content (20 lines) | stat: -rw-r--r-- 680 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include ../tools.mk

# 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.

# ignore-windows
# The test uses `chmod`.

OUTPUT_DIR := "$(TMPDIR)/rustdoc-io-error"

# 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)