]> git.lizzy.rs Git - rust.git/log
rust.git
2 years agoMerge #10517
bors[bot] [Thu, 14 Oct 2021 11:57:16 +0000 (11:57 +0000)]
Merge #10517

10517: Show cargo check failures to the user r=Veykril a=Veykril

Fixes https://github.com/rust-analyzer/rust-analyzer/issues/10515

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2 years agoKill the child process before waiting in streaming_output
Lukas Wirth [Thu, 14 Oct 2021 11:53:25 +0000 (13:53 +0200)]
Kill the child process before waiting in streaming_output

2 years agoMerge #10538
bors[bot] [Thu, 14 Oct 2021 11:50:14 +0000 (11:50 +0000)]
Merge #10538

10538: fix: matching brace should prefer brace on cursor's right r=Veykril a=codgician

I observed a brace matching issue with the following Rust code:

```rust
let x = (1 + (2 + 3)) * 4;
```

In a situation like `<|>(1 + (2 + 3)) * 4`, the cursor will go to `(1 + (2 + 3)<|>) * 4`, and if user tries to match bracket again it will go like  `(1 + <|>(2 + 3)) * 4` while logically the expected result should be `<|>(1 + (2 + 3)) * 4`. This behavior exists in both line cursor style and block cursor style.

This PR fixes this by letting `matching_brace` prefer the brace to cursor's right when the cursor lies between multiple consecutive braces. It **does NOT** fix #1942 but could be related. Please review.

Co-authored-by: codgician <15964984+codgician@users.noreply.github.com>
2 years agoMerge #10503
bors[bot] [Thu, 14 Oct 2021 11:42:53 +0000 (11:42 +0000)]
Merge #10503

10503: Only include targets of packages that are workspace members r=Veykril a=bcully

CargoWorkspace's package list includes packages that are path
dependencies, even if those packages aren't actually members of the
cargo workspace. As a result, rust-analyzer's runnable finder, which
returns the target from the first workspace that has a matching package,
may select the wrong working directory, causing runnables to fail, e.g.,
```
error: package `root` cannot be tested because it requires dev-dependencies and is not a member of the workspace
```

To fix this, we filter out packages that aren't members of the workspace
when searching for targets.

Fixes #7764

Co-authored-by: Brendan Cully <brendan@cully.org>
2 years agoMerge #10434
bors[bot] [Thu, 14 Oct 2021 10:56:08 +0000 (10:56 +0000)]
Merge #10434

10434: Allow `Locate parent module` command in Cargo.toml r=Veykril a=rainy-me

close #10355

Co-authored-by: rainy-me <github@rainy.me>
Co-authored-by: rainy-me <github@yue.coffee>
2 years agoMerge #10309
bors[bot] [Thu, 14 Oct 2021 10:47:11 +0000 (10:47 +0000)]
Merge #10309

10309: use `ControlFlow` in "extract function" assist r=Veykril a=dzvon

Fixes #10272

Co-authored-by: Dezhi Wu <wu543065657@163.com>
2 years agoMatching brace prefers brace on cursor's right
codgician [Thu, 14 Oct 2021 06:15:56 +0000 (14:15 +0800)]
Matching brace prefers brace on cursor's right

2 years agoMerge #10537
bors[bot] [Thu, 14 Oct 2021 05:57:31 +0000 (05:57 +0000)]
Merge #10537

10537: minor: Document rustc source auto-discovery r=lnicola a=lnicola

CC #10521

bors r+

Co-authored-by: Laurențiu Nicola <lnicola@dend.ro>
2 years agoDocument rustc source auto-discovery
Laurențiu Nicola [Thu, 14 Oct 2021 05:49:22 +0000 (08:49 +0300)]
Document rustc source auto-discovery

2 years agoProvide navigations to parent modules
rainy-me [Wed, 13 Oct 2021 22:16:42 +0000 (07:16 +0900)]
Provide navigations to parent modules

2 years agomerge use statement
Dezhi Wu [Wed, 13 Oct 2021 13:24:17 +0000 (21:24 +0800)]
merge use statement

2 years agoresolve `ControlFlow` ourself instead of hard coding.
Dezhi Wu [Wed, 13 Oct 2021 13:19:41 +0000 (21:19 +0800)]
resolve `ControlFlow` ourself instead of hard coding.

2 years agoMerge #10534
bors[bot] [Wed, 13 Oct 2021 13:13:00 +0000 (13:13 +0000)]
Merge #10534

10534: Made Rust analyzer logos dark mode friendly r=lnicola a=Permik

Hi! Here's a list of changes what I made to the logos to make them dark mode friendly:

* Simplified the letter R in both logos for strokes to play nice
* Added white stroke around the dark letters about the same weight as the light gray stroke around the rectangle/square

Extra, that is nice but doesn't really matter:
* Simplified the dots in the logo to be circles, not paths

Co-authored-by: Santtu Ojanperä <tintti214@gmail.com>
2 years agoMerge #10536
bors[bot] [Wed, 13 Oct 2021 12:41:25 +0000 (12:41 +0000)]
Merge #10536

10536: minor: Make AssistContext::frange private r=Veykril a=Veykril

bors r+

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2 years agoMake AssistContext::frange private
Lukas Wirth [Wed, 13 Oct 2021 12:39:37 +0000 (14:39 +0200)]
Make AssistContext::frange private

2 years agoimport `ControlFlow` to the module
Dezhi Wu [Wed, 13 Oct 2021 01:01:30 +0000 (09:01 +0800)]
import `ControlFlow` to the module

2 years agouse `ControlFlow::Break(_)` pattern
Dezhi Wu [Wed, 22 Sep 2021 10:48:47 +0000 (18:48 +0800)]
use `ControlFlow::Break(_)` pattern

2 years agouse `ControlFlow` in "extract function" assist
Dezhi Wu [Wed, 22 Sep 2021 08:00:09 +0000 (16:00 +0800)]
use `ControlFlow` in "extract function" assist

2 years agoSimplified the dot in the wide logo
Santtu Ojanperä [Tue, 12 Oct 2021 22:41:12 +0000 (01:41 +0300)]
Simplified the dot in the wide logo

2 years agoMade the Rust analyzer logos more dark mode friendly
Santtu Ojanperä [Tue, 12 Oct 2021 22:22:47 +0000 (01:22 +0300)]
Made the Rust analyzer logos more dark mode friendly

2 years agoMerge #10533
bors[bot] [Tue, 12 Oct 2021 19:29:47 +0000 (19:29 +0000)]
Merge #10533

10533: fix: Fix AssistContext panic on sole whitespace selection r=Veykril a=Veykril

bors r+

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2 years agoFix AssistContext panic on sole whitespace selection
Lukas Wirth [Tue, 12 Oct 2021 19:29:08 +0000 (21:29 +0200)]
Fix AssistContext panic on sole whitespace selection

2 years agoMerge #10423
bors[bot] [Tue, 12 Oct 2021 18:35:03 +0000 (18:35 +0000)]
Merge #10423

10423: Internal: refactor for mdbook plugin r=Veykril a=HKalbasi

This PR is for upstreaming changes that I made for mdbook plugin. Changes are adding inlay hints to `StaticIndex` and changing some functions for working around privacy of crates.

Aside this, is it okay if I bring the plugin in tree? It is a simple binary crate. I feel it will better maintained here and become resistant to api changes.

Co-authored-by: hamidreza kalbasi <hamidrezakalbasi@protonmail.com>
2 years agoMerge #10529
bors[bot] [Tue, 12 Oct 2021 17:32:58 +0000 (17:32 +0000)]
Merge #10529

10529: Generate `PartialOrd` implementations r=Veykril a=yoshuawuyts

_co-authored with `@rylev_`

This closes #5946 (which should've been closed already, lol). This PR makes it so we generate `PartialOrd` code implementations where possible. This is the last of Rust's built-in traits that was missing codegen.

After this has been merged we should look at moving the tests to a better spot, and maybe cleaning up the implementation somewhat (it's rather copy-pasty at the moment).

Either way, this finishes up the functionality. Thanks heaps!

Co-authored-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2 years agoMerge #10532
bors[bot] [Tue, 12 Oct 2021 17:24:50 +0000 (17:24 +0000)]
Merge #10532

10532: Rename `descend_into_macros` Function per FIXME comment r=Veykril a=mirkoRainer

This renames `descend_into_macros` to  `descend_into_macros_single` and `descend_into_macros_many` into `descend_into_macros`.
 However, this does not touch a function in `SemanticsImpl` of same name.

I was prompted to do this per a FIXME comment, which is removed in this PR.

Co-authored-by: Mirko Rainer <mirkorainer@outlook.com>
2 years agoSaw a FIXME comment and decided to fix it.
Mirko Rainer [Tue, 12 Oct 2021 15:52:31 +0000 (11:52 -0400)]
Saw a FIXME comment and decided to fix it.
This renames `descend_into_macros` to  `descend_into_macros_single` and `descend_into_macros_many` into `descend_into_macros`.
 However, this does not touch a function in `SemanticsImpl` of same name.

2 years agoSimplify generated PartialOrd code
Yoshua Wuyts [Tue, 12 Oct 2021 15:44:57 +0000 (17:44 +0200)]
Simplify generated PartialOrd code

2 years agoimpl PartialOrd codegen for tuple enum
Yoshua Wuyts [Tue, 12 Oct 2021 13:07:57 +0000 (15:07 +0200)]
impl PartialOrd codegen for tuple enum

2 years agoimpl PartialOrd codegen for record enum
Yoshua Wuyts [Tue, 12 Oct 2021 12:56:19 +0000 (14:56 +0200)]
impl PartialOrd codegen for record enum

2 years agoimpl PartialOrd codegen for C-style enums
Yoshua Wuyts [Tue, 12 Oct 2021 12:36:50 +0000 (14:36 +0200)]
impl PartialOrd codegen for C-style enums

2 years agoimpl PartialOrd codegen for struct records
Yoshua Wuyts [Tue, 12 Oct 2021 12:24:42 +0000 (14:24 +0200)]
impl PartialOrd codegen for struct records

2 years agoimpl PartialOrd codegen for tuple records
Yoshua Wuyts [Tue, 12 Oct 2021 12:18:08 +0000 (14:18 +0200)]
impl PartialOrd codegen for tuple records

2 years agoinit partialord
Yoshua Wuyts [Mon, 16 Aug 2021 08:07:19 +0000 (10:07 +0200)]
init partialord

2 years agoMerge #10530
bors[bot] [Tue, 12 Oct 2021 13:26:38 +0000 (13:26 +0000)]
Merge #10530

10530: Add link to ECS acronym to clarify. r=lnicola a=mirkoRainer

I had to ask a clarifying question about this acronym. If I had the question, it's likely that someone else will also have the question so I wanted to clarify.

Co-authored-by: Mirko Rainer <mirkorainer@outlook.com>
2 years agoAdd link to ECS acronym to clarify.
Mirko Rainer [Tue, 12 Oct 2021 13:24:00 +0000 (09:24 -0400)]
Add link to ECS acronym to clarify.

2 years agoMerge #10528
bors[bot] [Tue, 12 Oct 2021 12:42:36 +0000 (12:42 +0000)]
Merge #10528

10528: internal: Make selections in assists with trailing/leading whitespace more forgiving r=Veykril a=Veykril

bors r+

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2 years agoMake selections in assists with trailing/leading whitespace more forgiving
Lukas Wirth [Tue, 12 Oct 2021 12:41:59 +0000 (14:41 +0200)]
Make selections in assists with trailing/leading whitespace more forgiving

2 years agoMerge #10526
bors[bot] [Tue, 12 Oct 2021 09:49:02 +0000 (09:49 +0000)]
Merge #10526

10526: internal: Improve user snippet import performance r=Veykril a=Veykril

Re-using the `GreenNode` should be a good chunk faster than reparsing the paths on each completion
bors r+

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2 years agoImprove user snippet import performance
Lukas Wirth [Tue, 12 Oct 2021 09:47:22 +0000 (11:47 +0200)]
Improve user snippet import performance

2 years agointernal changes for mdbook
hamidreza kalbasi [Fri, 1 Oct 2021 13:07:11 +0000 (16:37 +0330)]
internal changes for mdbook

2 years agoMerge #10525
bors[bot] [Tue, 12 Oct 2021 07:56:00 +0000 (07:56 +0000)]
Merge #10525

10525: Regenerate lints and features r=Veykril a=Veykril

bors r+

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2 years agoUpdate tidy ignore path
Lukas Wirth [Tue, 12 Oct 2021 07:47:21 +0000 (09:47 +0200)]
Update tidy ignore path

2 years agoRemove stale module
Lukas Wirth [Tue, 12 Oct 2021 07:37:16 +0000 (09:37 +0200)]
Remove stale module

2 years agoRegenerate lints
Lukas Wirth [Tue, 12 Oct 2021 07:27:17 +0000 (09:27 +0200)]
Regenerate lints

2 years agoMove lint source generator
Lukas Wirth [Tue, 12 Oct 2021 06:59:39 +0000 (08:59 +0200)]
Move lint source generator

2 years agoOnly include targets of packages that are workspace members
Brendan Cully [Sun, 10 Oct 2021 02:49:34 +0000 (19:49 -0700)]
Only include targets of packages that are workspace members

CargoWorkspace's package list includes packages that are path
dependencies, even if those packages aren't actually members of the
cargo workspace. As a result, rust-analyzer's runnable finder, which
returns the target from the first workspace that has a matching package,
may select the wrong working directory, causing runnables to fail, e.g.,
```
error: package `root` cannot be tested because it requires dev-dependencies and is not a member of the workspace
```

To fix this, we filter out packages that aren't members of the workspace
when searching for targets.

Fixes #7764

2 years agoMerge #10522
bors[bot] [Mon, 11 Oct 2021 19:58:27 +0000 (19:58 +0000)]
Merge #10522

10522: fix: make signature info response conform to spec r=lnicola a=muscar

This addreses https://github.com/rust-analyzer/rust-analyzer/issues/10464.

This patch picks up `lsp-types` 0.90.1, which serialises the `SignatureInformation` and `ParameterInformation` with the right casing. It also adds `activeSignature` field as part of the top-level signature response. It keeps `activeParameter` at the top-level for backwards compatibility.

Co-authored-by: Alex Muscar <alex@muscar.eu>
2 years agoMerge #10523
bors[bot] [Mon, 11 Oct 2021 19:51:35 +0000 (19:51 +0000)]
Merge #10523

10523: minor: Simplify and add a few doc comments r=Veykril a=Veykril

bors r+

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2 years agoSimplify
Lukas Wirth [Mon, 11 Oct 2021 19:49:39 +0000 (21:49 +0200)]
Simplify

2 years agofix: make signature info response conform to spec
Alex Muscar [Mon, 11 Oct 2021 19:42:16 +0000 (20:42 +0100)]
fix: make signature info response conform to spec

This addreses
https://github.com/rust-analyzer/rust-analyzer/issues/10464.

This patch picks up `lsp-types` 0.90.1, which serialises the
`SignatureInformation` and `ParameterInformation` with the right casing.
It also adds `activeSignature` field as part of the top-level signature
response. It keeps `activeParameter` at the top-level for backwards
compatibility.

2 years agoMerge #10519
bors[bot] [Mon, 11 Oct 2021 12:51:53 +0000 (12:51 +0000)]
Merge #10519

10519: Add toolInfo in MetaData vertex in LSIF dumps r=lnicola a=sandhose

This helps with uploading LSIF dumps to Sourcegraph without having to specify an indexer name.

Fixes #10518

Co-authored-by: Quentin Gliech <quentingliech@gmail.com>
2 years agoAdd toolInfo in MetaData vertex in LSIF dumps
Quentin Gliech [Mon, 11 Oct 2021 12:45:58 +0000 (14:45 +0200)]
Add toolInfo in MetaData vertex in LSIF dumps

This helps with uploading LSIF dumps to Sourcegraph without having to
specify an indexer name.

2 years agoRemove unnecessary unused attribute
Lukas Wirth [Mon, 11 Oct 2021 12:42:18 +0000 (14:42 +0200)]
Remove unnecessary unused attribute

2 years agoShow cargo check failures to the user
Lukas Wirth [Mon, 11 Oct 2021 12:09:20 +0000 (14:09 +0200)]
Show cargo check failures to the user

2 years agoMerge #10514
bors[bot] [Sun, 10 Oct 2021 18:09:13 +0000 (18:09 +0000)]
Merge #10514

10514: internal: clean up code duplication r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2 years agointernal: clean up code duplication
Aleksey Kladov [Sun, 10 Oct 2021 18:07:43 +0000 (21:07 +0300)]
internal: clean up code duplication

2 years agoMerge #10513
bors[bot] [Sun, 10 Oct 2021 16:13:59 +0000 (16:13 +0000)]
Merge #10513

10513: minor: align code to code style r=matklad a=matklad

(mutually recursive) data type definitions shall be at the start of the
file.

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2 years agominor: align code to code style
Aleksey Kladov [Sun, 10 Oct 2021 16:13:05 +0000 (19:13 +0300)]
minor: align code to code style

(mutually recursive) data type definitions shall be at the start of the
file.

2 years agoMerge #10512
bors[bot] [Sun, 10 Oct 2021 13:52:45 +0000 (13:52 +0000)]
Merge #10512

10512: internal: add integrated test for token censoring r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2 years agointernal: add integrated test for token censoring
Aleksey Kladov [Sun, 10 Oct 2021 13:50:28 +0000 (16:50 +0300)]
internal: add integrated test for token censoring

2 years agoMerge #10511
bors[bot] [Sun, 10 Oct 2021 13:25:36 +0000 (13:25 +0000)]
Merge #10511

10511: minor: add a test for derive macros in core r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2 years agominor: add a test for derive macros in core
Aleksey Kladov [Sun, 10 Oct 2021 13:13:45 +0000 (16:13 +0300)]
minor: add a test for derive macros in core

2 years agoMerge #10510
bors[bot] [Sun, 10 Oct 2021 13:10:59 +0000 (13:10 +0000)]
Merge #10510

10510: internal: move derived tests to the unified macro infra r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2 years agointernal: move derived tests to the unified macro infra
Aleksey Kladov [Sun, 10 Oct 2021 13:08:01 +0000 (16:08 +0300)]
internal: move derived tests to the unified macro infra

2 years agoMerge #10509
bors[bot] [Sun, 10 Oct 2021 12:44:39 +0000 (12:44 +0000)]
Merge #10509

10509: internal: consistent module naming r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2 years agointernal: consistent module naming
Aleksey Kladov [Sun, 10 Oct 2021 12:44:03 +0000 (15:44 +0300)]
internal: consistent module naming

2 years agoMerge #10508
bors[bot] [Sun, 10 Oct 2021 12:32:03 +0000 (12:32 +0000)]
Merge #10508

10508: internal: move some tests r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2 years agomove tests
Aleksey Kladov [Sun, 10 Oct 2021 12:30:54 +0000 (15:30 +0300)]
move tests

2 years agomove tests
Aleksey Kladov [Sun, 10 Oct 2021 12:28:24 +0000 (15:28 +0300)]
move tests

2 years agointernal: move builtin macro tests to macro expansion suite
Aleksey Kladov [Sun, 10 Oct 2021 12:17:53 +0000 (15:17 +0300)]
internal: move builtin macro tests to macro expansion suite

2 years agodrop obsolete tests
Aleksey Kladov [Sun, 10 Oct 2021 12:11:33 +0000 (15:11 +0300)]
drop obsolete tests

2 years agomove test
Aleksey Kladov [Sun, 10 Oct 2021 12:06:41 +0000 (15:06 +0300)]
move test

2 years agomove tests
Aleksey Kladov [Sun, 10 Oct 2021 11:58:25 +0000 (14:58 +0300)]
move tests

2 years agomove tests
Aleksey Kladov [Sun, 10 Oct 2021 11:40:13 +0000 (14:40 +0300)]
move tests

2 years agomove test
Aleksey Kladov [Sun, 10 Oct 2021 11:28:04 +0000 (14:28 +0300)]
move test

2 years agomove tests
Aleksey Kladov [Sun, 10 Oct 2021 11:26:47 +0000 (14:26 +0300)]
move tests

2 years agomove test
Aleksey Kladov [Sun, 10 Oct 2021 11:23:52 +0000 (14:23 +0300)]
move test

2 years agomove tests
Aleksey Kladov [Sun, 10 Oct 2021 11:21:47 +0000 (14:21 +0300)]
move tests

2 years agomove tests
Aleksey Kladov [Sun, 10 Oct 2021 11:08:49 +0000 (14:08 +0300)]
move tests

2 years agoadd directory for regression tests
Aleksey Kladov [Sun, 10 Oct 2021 10:56:41 +0000 (13:56 +0300)]
add directory for regression tests

2 years agomove test
Aleksey Kladov [Sun, 10 Oct 2021 10:54:44 +0000 (13:54 +0300)]
move test

2 years agomove test
Aleksey Kladov [Sun, 10 Oct 2021 10:26:07 +0000 (13:26 +0300)]
move test

2 years agomove test
Aleksey Kladov [Sun, 10 Oct 2021 10:24:48 +0000 (13:24 +0300)]
move test

2 years agointernal: move test
Aleksey Kladov [Sun, 10 Oct 2021 10:21:42 +0000 (13:21 +0300)]
internal: move test

2 years agomove test
Aleksey Kladov [Sun, 10 Oct 2021 09:57:18 +0000 (12:57 +0300)]
move test

2 years agomove test
Aleksey Kladov [Sun, 10 Oct 2021 09:55:31 +0000 (12:55 +0300)]
move test

2 years agomove tests
Aleksey Kladov [Sun, 10 Oct 2021 09:52:28 +0000 (12:52 +0300)]
move tests

2 years agointernal: move tests
Aleksey Kladov [Sun, 10 Oct 2021 09:45:17 +0000 (12:45 +0300)]
internal: move tests

2 years agointernal: move tests
Aleksey Kladov [Sun, 10 Oct 2021 09:39:58 +0000 (12:39 +0300)]
internal: move tests

2 years agoMerge #10507
bors[bot] [Sun, 10 Oct 2021 08:46:29 +0000 (08:46 +0000)]
Merge #10507

10507: internal: move tests r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2 years agointernal: consistently use `ok!();` for succesfull macro expansion
Aleksey Kladov [Sun, 10 Oct 2021 08:45:05 +0000 (11:45 +0300)]
internal: consistently use `ok!();` for succesfull macro expansion

2 years agomove some tests
Aleksey Kladov [Sun, 10 Oct 2021 08:44:46 +0000 (11:44 +0300)]
move some tests

2 years agomove tests
Aleksey Kladov [Sun, 10 Oct 2021 08:39:08 +0000 (11:39 +0300)]
move tests

2 years agomove test
Aleksey Kladov [Sun, 10 Oct 2021 08:29:26 +0000 (11:29 +0300)]
move test

2 years agomove test
Aleksey Kladov [Sun, 10 Oct 2021 08:26:18 +0000 (11:26 +0300)]
move test

2 years agotest formatting
Aleksey Kladov [Sun, 10 Oct 2021 08:22:12 +0000 (11:22 +0300)]
test formatting

2 years agotest formatting
Aleksey Kladov [Sun, 10 Oct 2021 08:16:25 +0000 (11:16 +0300)]
test formatting

2 years agomove tests
Aleksey Kladov [Sun, 10 Oct 2021 08:15:42 +0000 (11:15 +0300)]
move tests

2 years agointernal: move tests
Aleksey Kladov [Sun, 10 Oct 2021 08:11:50 +0000 (11:11 +0300)]
internal: move tests

2 years agoMerge #10501
bors[bot] [Sun, 10 Oct 2021 08:09:50 +0000 (08:09 +0000)]
Merge #10501

10501: internal: move some mbe tests r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>