From 2f508c34418111a1ada4a4e98cf293b9c073602b Mon Sep 17 00:00:00 2001 From: Jonathan Beezley Date: Thu, 7 May 2015 11:16:16 -0400 Subject: [PATCH 1/2] Add lapack to libcf deps --- CMake/cdat_modules/libcf_deps.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMake/cdat_modules/libcf_deps.cmake b/CMake/cdat_modules/libcf_deps.cmake index 9594ec0460..5673f4b88a 100644 --- a/CMake/cdat_modules/libcf_deps.cmake +++ b/CMake/cdat_modules/libcf_deps.cmake @@ -1 +1 @@ -set(libcf_deps ${pkgconfig_pkg} ${python_pkg} ${netcdf_pkg} ${hdf5_pkg} ${curl_pkg} ${zlib_pkg} ${uuid_pkg} ) +set(libcf_deps ${pkgconfig_pkg} ${python_pkg} ${netcdf_pkg} ${hdf5_pkg} ${curl_pkg} ${zlib_pkg} ${uuid_pkg} ${clapack_pkg} ${lapack_pkg} ) From 9a3e3009ab602524dd4512389dd0a4e3666d5923 Mon Sep 17 00:00:00 2001 From: Charles Doutriaux Date: Mon, 11 May 2015 14:09:56 -0700 Subject: [PATCH 2/2] changed dap test sample from our own to the one also used by netcdf test suite --- testing/cdms2/test_all_formats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/cdms2/test_all_formats.py b/testing/cdms2/test_all_formats.py index e8c69d2349..b28e62462a 100644 --- a/testing/cdms2/test_all_formats.py +++ b/testing/cdms2/test_all_formats.py @@ -3,7 +3,7 @@ if cdat_info.CDMS_INCLUDE_DAP=='yes': print 'Testing Dap' - f=cdms2.open('http://esgcet.llnl.gov/dap/ipcc4/20c3m/ncar_ccsm3_0/pcmdi.ipcc4.ncar_ccsm3_0.20c3m.run6.atm.mo.xml') + f=cdms2.open('http://test.opendap.org/opendap/hyrax/netcdf/examples/ECMWF_ERA-40_subset.nc') print f.listvariables() else: print 'CDMS not built with DAP support, skipped DAP test'