From 9e87bffa82d28273cbc4f4827fe9f110f68d1d54 Mon Sep 17 00:00:00 2001 From: Jakob Stoklund Olesen Date: Fri, 12 Aug 2016 11:03:28 -0700 Subject: [PATCH] Remove tests/lib.rs to avoid running tests twice. The 'cargo test' command simply compiles each 'tests/*.rs' and runs the enclosed tests. The 'lib.rs' source would get run as an individual test. --- src/tools/tests/lib.rs | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 src/tools/tests/lib.rs diff --git a/src/tools/tests/lib.rs b/src/tools/tests/lib.rs deleted file mode 100644 index fcd2535269..0000000000 --- a/src/tools/tests/lib.rs +++ /dev/null @@ -1,2 +0,0 @@ -pub mod cfg_traversal; -pub mod dominator_tree;