diff --git a/Project.toml b/Project.toml index aae2d60..1189cf4 100644 --- a/Project.toml +++ b/Project.toml @@ -6,7 +6,7 @@ version = "0.1.0" [deps] CxxWrap = "1f15a43c-97ca-5a2a-ae31-89f07a497df4" Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb" -Revise = "295af30f-e4ad-537b-8983-00126c2a3abe" +XRootD_cxxwrap_jll = "bb14ce0c-f071-543a-8ca1-cd3dc3e29ed0" XRootD_jll = "b6113df7-b24e-50c0-846f-35a2e36cb9d5" [compat] diff --git a/src/XRootD.jl b/src/XRootD.jl index 26f92b4..eaf94a2 100644 --- a/src/XRootD.jl +++ b/src/XRootD.jl @@ -9,9 +9,9 @@ module XRootD include(joinpath(gendir, "jl/XRootD-export.jl")) @wrapmodule(()->joinpath(gendir, "build/lib", "libXRootDWrap.$(Libdl.dlext)")) else - #using XRootD_cxxwrap_jll - #include(XRootD_julia_jll.XRootD_exports) - #@wrapmodule(()->XRootD_julia_jll.libXRootDWrap) + using XRootD_cxxwrap_jll + include(XRootD_cxxwrap_jll.XRootD_exports) + @wrapmodule(()->XRootD_cxxwrap_jll.libXRootDWrap) end function __init__() diff --git a/test/runtests.jl b/test/runtests.jl index a3a4857..f7c90fa 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,4 +1,3 @@ -using Revise using Test using XRootD_jll @@ -8,6 +7,7 @@ using XRootD.XrdCl xrootd_server = run(XRootD_jll.xrootd(); wait=false) sleep(1) +#---Test the XRootD.jl package--------------------------------------------------------------------- @testset "XRootD tests" verbose = true begin include("testFileSystem.jl") include("testFile.jl")