Skip to content

Commit 133a403

Browse files
committed
Remove empty test suite tests/run-make-fulldeps
1 parent 71cc3e4 commit 133a403

File tree

6 files changed

+3
-18
lines changed

6 files changed

+3
-18
lines changed

src/bootstrap/src/core/build_steps/test.rs

-6
Original file line numberDiff line numberDiff line change
@@ -1487,12 +1487,6 @@ impl Step for RunMake {
14871487
}
14881488
}
14891489

1490-
host_test!(RunMakeFullDeps {
1491-
path: "tests/run-make-fulldeps",
1492-
mode: "run-make",
1493-
suite: "run-make-fulldeps"
1494-
});
1495-
14961490
default_test!(Assembly { path: "tests/assembly", mode: "assembly", suite: "assembly" });
14971491

14981492
/// Coverage tests are a bit more complicated than other test suites, because

src/bootstrap/src/core/builder.rs

-2
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,6 @@ const PATH_REMAP: &[(&str, &[&str])] = &[
332332
"tests/mir-opt",
333333
"tests/pretty",
334334
"tests/run-make",
335-
"tests/run-make-fulldeps",
336335
"tests/run-pass-valgrind",
337336
"tests/rustdoc",
338337
"tests/rustdoc-gui",
@@ -828,7 +827,6 @@ impl<'a> Builder<'a> {
828827
test::RustAnalyzer,
829828
test::ErrorIndex,
830829
test::Distcheck,
831-
test::RunMakeFullDeps,
832830
test::Nomicon,
833831
test::Reference,
834832
test::RustdocBook,

src/ci/docker/host-x86_64/x86_64-gnu-debug/Dockerfile

+1-3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,4 @@ ENV RUST_CONFIGURE_ARGS \
4444
--set target.x86_64-unknown-linux-gnu.cc=clang \
4545
--set target.x86_64-unknown-linux-gnu.cxx=clang++
4646

47-
ENV SCRIPT \
48-
python3 ../x.py --stage 2 build && \
49-
python3 ../x.py --stage 2 test tests/run-make-fulldeps --test-args clang
47+
ENV SCRIPT python3 ../x.py --stage 2 build

src/ci/github-actions/jobs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ runners:
3737

3838
envs:
3939
env-x86_64-apple-tests: &env-x86_64-apple-tests
40-
SCRIPT: ./x.py --stage 2 test --skip tests/ui --skip tests/rustdoc --skip tests/run-make-fulldeps
40+
SCRIPT: ./x.py --stage 2 test --skip tests/ui --skip tests/rustdoc
4141
RUST_CONFIGURE_ARGS: --build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc
4242
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
4343
MACOSX_DEPLOYMENT_TARGET: 10.12
@@ -294,7 +294,7 @@ auto:
294294

295295
- image: x86_64-apple-2
296296
env:
297-
SCRIPT: ./x.py --stage 2 test tests/ui tests/rustdoc tests/run-make-fulldeps
297+
SCRIPT: ./x.py --stage 2 test tests/ui tests/rustdoc
298298
<<: *env-x86_64-apple-tests
299299
<<: *job-macos-xl
300300

src/doc/rustc/src/platform-support/nto-qnx.md

-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,6 @@ export exclude_tests='
161161
--exclude tests/ui-fulldeps
162162
--exclude rustc
163163
--exclude rustdoc
164-
--exclude tests/run-make-fulldeps'
165164
166165
env $build_env \
167166
./x.py test \

tests/run-make-fulldeps/README.md

-4
This file was deleted.

0 commit comments

Comments
 (0)