forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#39851 - alexcrichton:verify-unstable, r=brson
test: Verify all sysroot crates are unstable As we continue to add more crates to the compiler and use them to implement various features we want to be sure we're not accidentally expanding the API surface area of the compiler! To that end this commit adds a new `run-make` test which will attempt to `extern crate foo` all crates in the sysroot, verifying that they're all unstable. This commit discovered that the `std_shim` and `test_shim` crates were accidentally stable and fixes the situation by deleting those shims. The shims are no longer necessary due to changes in Cargo that have happened since they were originally incepted.
- Loading branch information
Showing
14 changed files
with
65 additions
and
158 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# This is a whitelist of crates which are stable, we don't check for the | ||
# instability of these crates as they're all stable! | ||
STABLE_CRATES := \ | ||
std \ | ||
core \ | ||
proc_macro | ||
|
||
# Generate a list of all crates in the sysroot. To do this we list all files in | ||
# rustc's sysroot, look at the filename, strip everything after the `-`, and | ||
# strip the leading `lib` (if present) | ||
SYSROOT := $(shell $(RUSTC) --print sysroot) | ||
LIBS := $(wildcard $(SYSROOT)/lib/rustlib/$(TARGET)/lib/*) | ||
LIBS := $(foreach lib,$(LIBS),$(notdir $(lib))) | ||
LIBS := $(foreach lib,$(LIBS),$(word 1,$(subst -, ,$(lib)))) | ||
LIBS := $(foreach lib,$(LIBS),$(patsubst lib%,%,$(lib))) | ||
LIBS := $(filter-out $(STABLE_CRATES),$(LIBS)) | ||
|
||
all: $(foreach lib,$(LIBS),check-crate-$(lib)-is-unstable) | ||
|
||
check-crate-%-is-unstable: | ||
@echo verifying $* is an unstable crate | ||
@echo 'extern crate $*;' | \ | ||
$(RUSTC) - --crate-type rlib 2>&1 | cat > $(TMPDIR)/$*; \ | ||
true | ||
@grep -q 'use of unstable library feature' $(TMPDIR)/$* || \ | ||
(echo crate $* is not unstable && \ | ||
cat $(TMPDIR)/$* && \ | ||
false) |