File tree 6 files changed +6
-17
lines changed
docker/host-x86_64/x86_64-gnu-debug
doc/rustc/src/platform-support
6 files changed +6
-17
lines changed Original file line number Diff line number Diff line change @@ -1487,12 +1487,6 @@ impl Step for RunMake {
1487
1487
}
1488
1488
}
1489
1489
1490
- host_test ! ( RunMakeFullDeps {
1491
- path: "tests/run-make-fulldeps" ,
1492
- mode: "run-make" ,
1493
- suite: "run-make-fulldeps"
1494
- } ) ;
1495
-
1496
1490
default_test ! ( Assembly { path: "tests/assembly" , mode: "assembly" , suite: "assembly" } ) ;
1497
1491
1498
1492
/// Coverage tests are a bit more complicated than other test suites, because
Original file line number Diff line number Diff line change @@ -332,7 +332,6 @@ const PATH_REMAP: &[(&str, &[&str])] = &[
332
332
"tests/mir-opt" ,
333
333
"tests/pretty" ,
334
334
"tests/run-make" ,
335
- "tests/run-make-fulldeps" ,
336
335
"tests/run-pass-valgrind" ,
337
336
"tests/rustdoc" ,
338
337
"tests/rustdoc-gui" ,
@@ -828,7 +827,6 @@ impl<'a> Builder<'a> {
828
827
test:: RustAnalyzer ,
829
828
test:: ErrorIndex ,
830
829
test:: Distcheck ,
831
- test:: RunMakeFullDeps ,
832
830
test:: Nomicon ,
833
831
test:: Reference ,
834
832
test:: RustdocBook ,
Original file line number Diff line number Diff line change @@ -49,7 +49,9 @@ ENV RUST_CONFIGURE_ARGS \
49
49
# (without necessarily testing the result).
50
50
# - That the tests with `//@ needs-matching-clang` pass, since they
51
51
# don't run by default unless RUSTBUILD_FORCE_CLANG_BASED_TESTS is set.
52
+ # - FIXME(https://github.com/rust-lang/rust/pull/126155#issuecomment-2156314273):
53
+ # Currently we only run the subset of tests with "clang" in their name.
52
54
53
55
ENV SCRIPT \
54
56
python3 ../x.py --stage 2 build && \
55
- python3 ../x.py --stage 2 test tests/run-make
57
+ python3 ../x.py --stage 2 test tests/run-make --test-args clang
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ runners:
37
37
38
38
envs :
39
39
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
41
41
RUST_CONFIGURE_ARGS : --build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc
42
42
RUSTC_RETRY_LINKER_ON_SEGFAULT : 1
43
43
MACOSX_DEPLOYMENT_TARGET : 10.12
@@ -294,7 +294,7 @@ auto:
294
294
295
295
- image : x86_64-apple-2
296
296
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
298
298
<< : *env-x86_64-apple-tests
299
299
<< : *job-macos-xl
300
300
Original file line number Diff line number Diff line change @@ -160,8 +160,7 @@ export exclude_tests='
160
160
--exclude src/tools/linkchecker
161
161
--exclude tests/ui-fulldeps
162
162
--exclude rustc
163
- --exclude rustdoc
164
- --exclude tests/run-make-fulldeps'
163
+ --exclude rustdoc'
165
164
166
165
env $build_env \
167
166
./x.py test \
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments