turn off wasm testing

This commit is contained in:
Folkert 2021-08-29 23:08:16 +02:00
parent 4ced5ce2c0
commit d77c695e45
5 changed files with 10 additions and 10 deletions

View file

@ -592,8 +592,8 @@ macro_rules! assert_evals_to {
($src:expr, $expected:expr, $ty:ty, $transform:expr) => {
// Same as above, except with an additional transformation argument.
{
// $crate::assert_llvm_evals_to!($src, $expected, $ty, $transform, false);
$crate::assert_wasm_evals_to!($src, $expected, $ty, $transform, false);
$crate::assert_llvm_evals_to!($src, $expected, $ty, $transform, false);
// $crate::assert_wasm_evals_to!($src, $expected, $ty, $transform, false);
}
};
}