Skip to content

Commit 40ba0e8

Browse files
committedJan 11, 2023
Change src/test to tests in source files, fix tidy and tests
1 parent cf2dff2 commit 40ba0e8

File tree

137 files changed

+315
-311
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+315
-311
lines changed
 

‎.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ jobs:
342342
os: macos-12-xl
343343
- name: x86_64-apple-1
344344
env:
345-
SCRIPT: "./x.py --stage 2 test --exclude src/test/ui --exclude src/test/rustdoc --exclude src/test/run-make-fulldeps"
345+
SCRIPT: "./x.py --stage 2 test --exclude tests/ui --exclude tests/rustdoc --exclude tests/run-make-fulldeps"
346346
RUST_CONFIGURE_ARGS: "--build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false"
347347
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
348348
MACOSX_DEPLOYMENT_TARGET: 10.8
@@ -353,7 +353,7 @@ jobs:
353353
os: macos-12-xl
354354
- name: x86_64-apple-2
355355
env:
356-
SCRIPT: "./x.py --stage 2 test src/test/ui src/test/rustdoc src/test/run-make-fulldeps"
356+
SCRIPT: "./x.py --stage 2 test tests/ui tests/rustdoc tests/run-make-fulldeps"
357357
RUST_CONFIGURE_ARGS: "--build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false"
358358
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
359359
MACOSX_DEPLOYMENT_TARGET: 10.8

‎.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Session.vim
2626
.valgrindrc
2727
.cargo
2828
# Included because it is part of the test case
29-
!/src/test/run-make/thumb-none-qemu/example/.cargo
29+
!/tests/run-make/thumb-none-qemu/example/.cargo
3030

3131
## Configuration
3232
/config.toml
@@ -74,6 +74,6 @@ package-lock.json
7474
package.json
7575

7676
## Rustdoc GUI tests
77-
src/test/rustdoc-gui/src/**.lock
77+
tests/rustdoc-gui/src/**.lock
7878

7979
# Before adding new lines, see the comment at the top.

0 commit comments

Comments
 (0)
Please sign in to comment.