about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAntoni Boucher <bouanto@zoho.com>2024-07-05 13:11:24 -0400
committerAntoni Boucher <bouanto@zoho.com>2024-07-05 13:44:25 -0400
commit14d327a265dde1df05cf15e23c6956197a22f141 (patch)
treef74b69bcd17c5a359eba713ac3d141bd4681d6df
parentfe054be06ed9cea3f8b6efc723de20feb418cb4d (diff)
downloadrust-14d327a265dde1df05cf15e23c6956197a22f141.tar.gz
rust-14d327a265dde1df05cf15e23c6956197a22f141.zip
Disable run-make tests
-rw-r--r--build_system/src/test.rs12
1 files changed, 7 insertions, 5 deletions
diff --git a/build_system/src/test.rs b/build_system/src/test.rs
index 5efdac9444d..8d088a3aac3 100644
--- a/build_system/src/test.rs
+++ b/build_system/src/test.rs
@@ -1038,18 +1038,19 @@ where
 }
 
 fn test_rustc(env: &Env, args: &TestArg) -> Result<(), String> {
-    test_rustc_inner(env, args, |_| Ok(false), false, "run-make")?;
+    //test_rustc_inner(env, args, |_| Ok(false), false, "run-make")?;
     test_rustc_inner(env, args, |_| Ok(false), false, "ui")
 }
 
 fn test_failing_rustc(env: &Env, args: &TestArg) -> Result<(), String> {
-    let result1 = test_rustc_inner(
+    let result1 = Ok(());
+    /*test_rustc_inner(
         env,
         args,
         retain_files_callback("tests/failing-run-make-tests.txt", "run-make"),
         false,
         "run-make",
-    );
+    )*/
 
     let result2 = test_rustc_inner(
         env,
@@ -1070,13 +1071,14 @@ fn test_successful_rustc(env: &Env, args: &TestArg) -> Result<(), String> {
         false,
         "ui",
     )?;
-    test_rustc_inner(
+    Ok(())
+    /*test_rustc_inner(
         env,
         args,
         remove_files_callback("tests/failing-run-make-tests.txt", "run-make"),
         false,
         "run-make",
-    )
+    )*/
 }
 
 fn test_failing_ui_pattern_tests(env: &Env, args: &TestArg) -> Result<(), String> {