about summary refs log tree commit diff
path: root/src/test/run-make-fulldeps/coverage/dead_code.rs
diff options
context:
space:
mode:
authorTomasz Miąsko <tomasz.miasko@gmail.com>2022-07-25 00:00:00 +0000
committerTomasz Miąsko <tomasz.miasko@gmail.com>2022-07-28 14:33:29 +0200
commit866d5c621c9b87f82a5aa53c3dfc1e477181f33b (patch)
tree6b2c45b45140bbc8ee3925ec1ddc52e88b23c86a /src/test/run-make-fulldeps/coverage/dead_code.rs
parent48316dfea1914d25189fa441e7310449ed76a446 (diff)
downloadrust-866d5c621c9b87f82a5aa53c3dfc1e477181f33b.tar.gz
rust-866d5c621c9b87f82a5aa53c3dfc1e477181f33b.zip
Move coverage tests from run-make-fulldeps to run-make
Diffstat (limited to 'src/test/run-make-fulldeps/coverage/dead_code.rs')
-rw-r--r--src/test/run-make-fulldeps/coverage/dead_code.rs37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/test/run-make-fulldeps/coverage/dead_code.rs b/src/test/run-make-fulldeps/coverage/dead_code.rs
deleted file mode 100644
index a1285df0ec6..00000000000
--- a/src/test/run-make-fulldeps/coverage/dead_code.rs
+++ /dev/null
@@ -1,37 +0,0 @@
-#![allow(unused_assignments, unused_variables)]
-
-pub fn unused_pub_fn_not_in_library() {
-    // Initialize test constants in a way that cannot be determined at compile time, to ensure
-    // rustc and LLVM cannot optimize out statements (or coverage counters) downstream from
-    // dependent conditions.
-    let is_true = std::env::args().len() == 1;
-
-    let mut countdown = 0;
-    if is_true {
-        countdown = 10;
-    }
-}
-
-fn unused_fn() {
-    // Initialize test constants in a way that cannot be determined at compile time, to ensure
-    // rustc and LLVM cannot optimize out statements (or coverage counters) downstream from
-    // dependent conditions.
-    let is_true = std::env::args().len() == 1;
-
-    let mut countdown = 0;
-    if is_true {
-        countdown = 10;
-    }
-}
-
-fn main() {
-    // Initialize test constants in a way that cannot be determined at compile time, to ensure
-    // rustc and LLVM cannot optimize out statements (or coverage counters) downstream from
-    // dependent conditions.
-    let is_true = std::env::args().len() == 1;
-
-    let mut countdown = 0;
-    if is_true {
-        countdown = 10;
-    }
-}