about summary refs log tree commit diff
path: root/src/tools/compiletest
diff options
context:
space:
mode:
authorNixon Enraght-Moony <nixon.emoony@gmail.com>2022-09-14 14:51:18 +0100
committerNixon Enraght-Moony <nixon.emoony@gmail.com>2022-09-14 16:14:15 +0100
commit393792da8d8a931643baf855369df0a009acdb19 (patch)
tree3c1e5f7b59b6e8d93b814a7e694f79d576f6051a /src/tools/compiletest
parent5956b56ab251b9aafecd2ad6f431c42e069b3058 (diff)
downloadrust-393792da8d8a931643baf855369df0a009acdb19.tar.gz
rust-393792da8d8a931643baf855369df0a009acdb19.zip
Remove check_missing_items.py
Diffstat (limited to 'src/tools/compiletest')
-rw-r--r--src/tools/compiletest/src/runtest.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs
index 9cbb6b7c393..8f289876f73 100644
--- a/src/tools/compiletest/src/runtest.rs
+++ b/src/tools/compiletest/src/runtest.rs
@@ -2563,15 +2563,6 @@ impl<'test> TestCx<'test> {
 
         let mut json_out = out_dir.join(self.testpaths.file.file_stem().unwrap());
         json_out.set_extension("json");
-        let res = self.cmd2procres(
-            Command::new(&self.config.python)
-                .arg(root.join("src/etc/check_missing_items.py"))
-                .arg(&json_out),
-        );
-
-        if !res.status.success() {
-            self.fatal_proc_rec("check_missing_items failed!", &res);
-        }
 
         let res = self.cmd2procres(
             Command::new(self.config.jsondoclint_path.as_ref().unwrap()).arg(&json_out),