From 7c4a194dd695620b947546eedd123a19936a5014 Mon Sep 17 00:00:00 2001 From: Troels Henriksen Date: Wed, 2 Oct 2019 19:29:29 +0200 Subject: [PATCH] ispc: do not test on the "host" target This is because some very sensitive tests may fail when using more exotic platforms and vector instructions. For example, floating point summation (which is not associative in the first place), or transcendental functions. Arguably, ispc's test suite is too sensitive here. (cherry picked from commit 12f03a07764ff404b75a4240f891a08c57477e5d) Backport of #70260 --- pkgs/development/compilers/ispc/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/ispc/default.nix b/pkgs/development/compilers/ispc/default.nix index f240deda0bf933..762d1233bb6e99 100644 --- a/pkgs/development/compilers/ispc/default.nix +++ b/pkgs/development/compilers/ispc/default.nix @@ -1,5 +1,5 @@ {stdenv, fetchFromGitHub, which, m4, python, bison, flex, llvmPackages, -testedTargets ? ["sse2" "host"] # the default test target is sse4, but that is not supported by all Hydra agents +testedTargets ? ["sse2"] # the default test target is sse4, but that is not supported by all Hydra agents }: stdenv.mkDerivation rec {