From 3862c1f3a85a2bf56381c64c9d8aefbf24bf33d0 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 21 Apr 2020 14:23:38 -0500 Subject: [PATCH] Move tests to main test suite (#1568) Some merge-related fallout which needs to be cleaned up after we consolidated all of the test suites into one location. --- {crates/api/tests => tests/all}/iloop.rs | 0 tests/all/main.rs | 2 ++ .../api/tests/stack-overflow.rs => tests/all/stack_overflow.rs | 0 3 files changed, 2 insertions(+) rename {crates/api/tests => tests/all}/iloop.rs (100%) rename crates/api/tests/stack-overflow.rs => tests/all/stack_overflow.rs (100%) diff --git a/crates/api/tests/iloop.rs b/tests/all/iloop.rs similarity index 100% rename from crates/api/tests/iloop.rs rename to tests/all/iloop.rs diff --git a/tests/all/main.rs b/tests/all/main.rs index fddeb9897a..2f819c1a54 100644 --- a/tests/all/main.rs +++ b/tests/all/main.rs @@ -5,6 +5,7 @@ mod externals; mod func; mod fuzzing; mod globals; +mod iloop; mod import_calling_export; mod import_indexes; mod instance; @@ -12,5 +13,6 @@ mod invoke_func_via_table; mod linker; mod memory_creator; mod name; +mod stack_overflow; mod traps; mod wast; diff --git a/crates/api/tests/stack-overflow.rs b/tests/all/stack_overflow.rs similarity index 100% rename from crates/api/tests/stack-overflow.rs rename to tests/all/stack_overflow.rs