diff options
| author | kennytm <kennytm@gmail.com> | 2017-04-25 18:34:21 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2017-04-25 18:34:21 +0800 |
| commit | 164fd696bf9db696148018f395ad703a5825246e (patch) | |
| tree | d2483ea89e1840c5c448038348e849298cb09e04 | |
| parent | 86747a9952d9d112f64dd2671cfa8694a7822158 (diff) | |
| download | rust-164fd696bf9db696148018f395ad703a5825246e.tar.gz rust-164fd696bf9db696148018f395ad703a5825246e.zip | |
Do not check if libclang_rt.?san_*_dynamic.dylib is an unstable crate.
These are not even crates...
| -rw-r--r-- | src/test/run-make/sysroot-crates-are-unstable/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/test/run-make/sysroot-crates-are-unstable/Makefile b/src/test/run-make/sysroot-crates-are-unstable/Makefile index 2bdc76e01db..4b7052f9b94 100644 --- a/src/test/run-make/sysroot-crates-are-unstable/Makefile +++ b/src/test/run-make/sysroot-crates-are-unstable/Makefile @@ -1,7 +1,7 @@ -include ../tools.mk -# This is a whitelist of crates which are stable, we don't check for the -# instability of these crates as they're all stable! +# This is a whitelist of files which are stable crates or simply are not crates, +# we don't check for the instability of these crates as they're all stable! STABLE_CRATES := \ std \ core \ @@ -9,7 +9,8 @@ STABLE_CRATES := \ rsbegin.o \ rsend.o \ dllcrt2.o \ - crt2.o + crt2.o \ + clang_rt.%_dynamic.dylib # 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 |
