about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2020-05-16 04:56:26 +0200
committerGabor Greif <ggreif@gmail.com>2020-05-16 04:56:26 +0200
commitd89ae377d4b57415b1b00f2aa8e5a1655a1724b9 (patch)
tree24409be6b311be1efd32c9888e8c4603d17db33e
parentb39717abffae28c363ba5440fa38fd59fd601c1e (diff)
downloadnixlib-d89ae377d4b57415b1b00f2aa8e5a1655a1724b9.tar
nixlib-d89ae377d4b57415b1b00f2aa8e5a1655a1724b9.tar.gz
nixlib-d89ae377d4b57415b1b00f2aa8e5a1655a1724b9.tar.bz2
nixlib-d89ae377d4b57415b1b00f2aa8e5a1655a1724b9.tar.lz
nixlib-d89ae377d4b57415b1b00f2aa8e5a1655a1724b9.tar.xz
nixlib-d89ae377d4b57415b1b00f2aa8e5a1655a1724b9.tar.zst
nixlib-d89ae377d4b57415b1b00f2aa8e5a1655a1724b9.zip
wasmtime-0.16.0: re-enable tests on Darwin
The issue https://github.com/bytecodealliance/wasmtime/issues/1556
appears to be fixed.
-rw-r--r--pkgs/development/interpreters/wasmtime/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/wasmtime/default.nix b/pkgs/development/interpreters/wasmtime/default.nix
index 00b0fc6f9d85..dd6e3eb4a7f4 100644
--- a/pkgs/development/interpreters/wasmtime/default.nix
+++ b/pkgs/development/interpreters/wasmtime/default.nix
@@ -19,9 +19,7 @@ rustPlatform.buildRustPackage rec {
    lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
   LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
 
-  # no test on darwin due to
-  # https://github.com/bytecodealliance/wasmtime/issues/1556
-  doCheck = !stdenv.isDarwin;
+  doCheck = true;
 
   meta = with lib; {
     description = "Standalone JIT-style runtime for WebAssembly, using Cranelift";