summaryrefslogtreecommitdiffstats
path: root/tests/run-make/emit-shared-files/Makefile
blob: 27c72b003686d653bf177e4db41d4c775a291440 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
include ../tools.mk

INVOCATION_ONLY = $(TMPDIR)/invocation-only
TOOLCHAIN_ONLY = $(TMPDIR)/toolchain-only
ALL_SHARED = $(TMPDIR)/all-shared

all: invocation-only toolchain-only all-shared

invocation-only:
	$(RUSTDOC) -Z unstable-options --emit=invocation-specific --output $(INVOCATION_ONLY) --resource-suffix=-xxx --theme y.css --extend-css z.css x.rs
	[ -e $(INVOCATION_ONLY)/search-index-xxx.js ]
	[ -e $(INVOCATION_ONLY)/settings.html ]
	[ -e $(INVOCATION_ONLY)/x/all.html ]
	[ -e $(INVOCATION_ONLY)/x/index.html ]
	[ -e $(INVOCATION_ONLY)/theme-xxx.css ] # generated from z.css
	! [ -e $(INVOCATION_ONLY)/storage-xxx.js ]
	! [ -e $(INVOCATION_ONLY)/SourceSerif4-It.ttf.woff2 ]

	# FIXME: this probably shouldn't have a suffix
	[ -e $(INVOCATION_ONLY)/y-xxx.css ]
	# FIXME: this is technically incorrect (see `write_shared`)
	! [ -e $(INVOCATION_ONLY)/main-xxx.js ]

toolchain-only:
	$(RUSTDOC) -Z unstable-options --emit=toolchain-shared-resources --output $(TOOLCHAIN_ONLY) --resource-suffix=-xxx --extend-css z.css x.rs
	[ -e $(TOOLCHAIN_ONLY)/static.files/storage-*.js ]
	[ -e $(TOOLCHAIN_ONLY)/static.files/SourceSerif4-It-*.ttf.woff2 ]
	! [ -e $(TOOLCHAIN_ONLY)/search-index-xxx.js ]
	! [ -e $(TOOLCHAIN_ONLY)/x/index.html ]
	! [ -e $(TOOLCHAIN_ONLY)/theme.css ]

	[ -e $(TOOLCHAIN_ONLY)/static.files/main-*.js ]
	! [ -e $(TOOLCHAIN_ONLY)/y-xxx.css ]

all-shared:
	$(RUSTDOC) -Z unstable-options --emit=toolchain-shared-resources,unversioned-shared-resources --output $(ALL_SHARED) --resource-suffix=-xxx --extend-css z.css x.rs
	[ -e $(ALL_SHARED)/static.files/storage-*.js ]
	[ -e $(ALL_SHARED)/static.files/SourceSerif4-It-*.ttf.woff2 ]
	! [ -e $(ALL_SHARED)/search-index-xxx.js ]
	! [ -e $(ALL_SHARED)/settings.html ]
	! [ -e $(ALL_SHARED)/x ]
	! [ -e $(ALL_SHARED)/src ]
	! [ -e $(ALL_SHARED)/theme.css ]

	[ -e $(ALL_SHARED)/static.files/main-*.js ]
	! [ -e $(ALL_SHARED)/y-xxx.css ]