From 9dba81cd29a221821550bfcf23b5f2fc6f461294 Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Mon, 19 Jan 2015 08:52:26 -0800 Subject: [PATCH] Enable tests for Julia 0.3.X It was mentioned in PR #5842 that Julia's testsuite fails under nixpkgs. This PR enables the testsuite for Julia 0.3.X to demonstrate that it works. Since Julia is numerical software, I think it is a great idea to merge this current PR so that Julia will always be tested in the future. I was unable to get the tests to pass on the 0.2.X branch. However, this branch is dead (its latest commit was Aug 8) and will receive no more releases. --- pkgs/development/compilers/julia/0.3.5.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/compilers/julia/0.3.5.nix b/pkgs/development/compilers/julia/0.3.5.nix index 36639bd0e5ee..cf33203c5e08 100644 --- a/pkgs/development/compilers/julia/0.3.5.nix +++ b/pkgs/development/compilers/julia/0.3.5.nix @@ -140,6 +140,9 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + doCheck = true; + checkTarget = "testall"; + meta = { description = "High-level performance-oriented dynamical language for technical computing"; homepage = "http://julialang.org/";