returning client to the place it should be, cleanup

This commit is contained in:
Nikolay Volf
2016-02-09 00:54:33 +03:00
parent 3ef3f5ac31
commit fc0153a5a4
7 changed files with 26 additions and 12 deletions

View File

@@ -159,11 +159,13 @@ macro_rules! evm_test_ignore(
#[test]
#[ignore]
#[cfg(feature = "jit")]
#[cfg(feature = "ignored-tests")]
fn $name_jit() {
$name_test(Factory::new(VMType::Jit));
}
#[test]
#[ignore]
#[cfg(feature = "ignored-tests")]
fn $name_int() {
$name_test(Factory::new(VMType::Interpreter));
}