Skip to content

Commit 3812cf4

Browse files
committed
Reenable run-make tests
1 parent 1e96d86 commit 3812cf4

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

build_system/src/test.rs

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1089,19 +1089,18 @@ where
10891089
}
10901090

10911091
fn test_rustc(env: &Env, args: &TestArg) -> Result<(), String> {
1092-
//test_rustc_inner(env, args, |_| Ok(false), false, "run-make")?;
1092+
test_rustc_inner(env, args, |_| Ok(false), false, "run-make")?;
10931093
test_rustc_inner(env, args, |_| Ok(false), false, "ui")
10941094
}
10951095

10961096
fn test_failing_rustc(env: &Env, args: &TestArg) -> Result<(), String> {
1097-
let result1 = Ok(());
1098-
/*test_rustc_inner(
1097+
let result1 = test_rustc_inner(
10991098
env,
11001099
args,
11011100
retain_files_callback("tests/failing-run-make-tests.txt", "run-make"),
11021101
false,
11031102
"run-make",
1104-
)*/
1103+
);
11051104

11061105
let result2 = test_rustc_inner(
11071106
env,
@@ -1122,14 +1121,13 @@ fn test_successful_rustc(env: &Env, args: &TestArg) -> Result<(), String> {
11221121
false,
11231122
"ui",
11241123
)?;
1125-
Ok(())
1126-
/*test_rustc_inner(
1124+
test_rustc_inner(
11271125
env,
11281126
args,
11291127
remove_files_callback("tests/failing-run-make-tests.txt", "run-make"),
11301128
false,
11311129
"run-make",
1132-
)*/
1130+
)
11331131
}
11341132

11351133
fn test_failing_ui_pattern_tests(env: &Env, args: &TestArg) -> Result<(), String> {

0 commit comments

Comments
 (0)