Rollup merge of #73998 - euclio:search-index-determinism, r=nikomatsakis

add regression test for #61216

Fixes #61216.
This commit is contained in:
Manish Goregaokar
2020-07-16 11:18:40 -07:00
committed by GitHub
3 changed files with 18 additions and 0 deletions
@@ -0,0 +1,16 @@
-include ../tools.mk
# Assert that the search index is generated deterministically, regardless of the
# order that crates are documented in.
# ignore-windows
# Uses `diff`.
all:
$(RUSTDOC) foo.rs -o $(TMPDIR)/foo_first
$(RUSTDOC) bar.rs -o $(TMPDIR)/foo_first
$(RUSTDOC) bar.rs -o $(TMPDIR)/bar_first
$(RUSTDOC) foo.rs -o $(TMPDIR)/bar_first
diff $(TMPDIR)/foo_first/search-index.js $(TMPDIR)/bar_first/search-index.js
@@ -0,0 +1 @@
pub struct Bar;
@@ -0,0 +1 @@
pub struct Foo;