Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
794434e
initial implementation of rustdoc nested aux-build
EtomicBomb Jul 24, 2024
d8211de
ordering and wrapping cross-crate-info tests
EtomicBomb Jul 24, 2024
f6f0ef4
reformatted rustdoc/cross-crate-info, fixing trailing newline issue
EtomicBomb Jul 24, 2024
12d87ee
file_stem and comment per notriddle
EtomicBomb Jul 25, 2024
f91da72
merge conflicts; fix rebase duplicating imports
EtomicBomb Jul 29, 2024
4feb949
migrate fmt-write-bloat to rmake
lolbinarycat Jul 24, 2024
ebd6718
tidy
lolbinarycat Jul 30, 2024
bd23e0e
canonicalize path in another place to fix #128411
EtomicBomb Jul 31, 2024
281c2fd
Inline and remove `parse_local_mk`.
nnethercote Jul 31, 2024
fe647f0
Remove `LhsExpr`.
nnethercote Jul 31, 2024
2eb2ef1
Streamline attribute stitching on AST nodes.
nnethercote Jul 31, 2024
9d77d17
Move a comment to a better spot.
nnethercote Aug 1, 2024
d1f05fd
Distinguish the two kinds of token range.
nnethercote Jul 31, 2024
6d312d7
MIR required_consts, mentioned_items: ensure we do not forget to fill…
RalfJung Aug 1, 2024
f373ff3
Update stdarch
sayantn Aug 1, 2024
e3b9851
Delete issue-120720-reduce-nan.rs
sayantn Aug 1, 2024
aeed30c
Rollup merge of #128147 - lolbinarycat:fmt-write-bloat-rmake, r=jieyouxu
tgross35 Aug 1, 2024
0065784
Rollup merge of #128161 - EtomicBomb:just-compiletest, r=notriddle
tgross35 Aug 1, 2024
756725e
Rollup merge of #128466 - sayantn:stdarch-update, r=tgross35
tgross35 Aug 1, 2024
36e7150
Rollup merge of #128483 - nnethercote:still-more-cfg-cleanups, r=petr…
tgross35 Aug 1, 2024
5f2a7ab
Rollup merge of #128494 - RalfJung:mir-lazy-lists, r=compiler-errors
tgross35 Aug 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
merge conflicts; fix rebase duplicating imports
  • Loading branch information
EtomicBomb committed Jul 29, 2024
commit f91da72cb75f03739985926c5e5561611f783b80
11 changes: 0 additions & 11 deletions src/tools/compiletest/src/runtest.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,5 @@
// ignore-tidy-filelength

use crate::compute_diff::{write_diff, write_filtered_diff};
use crate::errors::{self, Error, ErrorKind};
use crate::header::TestProps;
use crate::json;
use crate::read2::{read2_abbreviated, Truncated};
use crate::util::{add_dylib_path, copy_dir_all, dylib_env_var, logv, static_regex, PathBufExt};
use crate::ColorConfig;
use colored::Colorize;
use miropt_test_tools::{files_for_miropt_test, MiroptTest, MiroptTestFile};
use regex::{Captures, Regex};
use rustfix::{apply_suggestions, get_suggestions_from_json, Filter};
use std::borrow::Cow;
use std::collections::{HashMap, HashSet};
use std::ffi::{OsStr, OsString};
Expand Down