From 9c2b66d7b084a4f4a76e46439adfd16036e57d6e Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Tue, 26 Feb 2019 08:50:16 -0800 Subject: [PATCH] Enable a julia test again --- tests/julia/julia_version-1.1/verify | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/julia/julia_version-1.1/verify b/tests/julia/julia_version-1.1/verify index 7418701b..acc1cff1 100755 --- a/tests/julia/julia_version-1.1/verify +++ b/tests/julia/julia_version-1.1/verify @@ -1,17 +1,17 @@ -#!/usr/bin/env julia +#!/usr/bin/env julia --project=. # Verify the version: if VERSION < v"1" || VERSION >= v"2" exit(1) end -# try -# # Test that the package was installed. -# using IteratorInterfaceExtensions +try + # Test that the package was installed. + using IteratorInterfaceExtensions -# # Verify that the environment variables are set correctly for julia 1.0+ -# @assert "julia" ∈ readdir(Sys.BINDIR) -# catch -# exit(1) -# end + # Verify that the environment variables are set correctly for julia 1.0+ + @assert "julia" ∈ readdir(Sys.BINDIR) +catch + exit(1) +end exit(0)