From 3aaadc72368ff9b1724f877d320478d90ac3ffa7 Mon Sep 17 00:00:00 2001 From: rhaas Date: Mon, 5 May 2014 15:15:57 +0000 Subject: correct regex to mathc convergence order output file git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/Multipole/trunk@114 4f5cb9a8-4dd8-4c2d-9bbd-173fa4467843 --- src/utils.cc | 2 +- test/test.ccl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils.cc b/src/utils.cc index 58a08db..2e98038 100644 --- a/src/utils.cc +++ b/src/utils.cc @@ -234,7 +234,7 @@ void Multipole_OutputComplexToH5File(CCTK_ARGUMENTS, const string &basename, con hid_t dataspace = H5Screate_simple(2, dims, maxdims); hid_t cparms = -1; - hsize_t chunk_dims[2] = {hdf5_chunk_size,3}; + hsize_t chunk_dims[2] = {hsize_t(hdf5_chunk_size),3}; cparms = H5Pcreate (H5P_DATASET_CREATE); HDF5_ERROR(H5Pset_chunk(cparms, 2, chunk_dims)); diff --git a/test/test.ccl b/test/test.ccl index a53d4e6..7b35561 100644 --- a/test/test.ccl +++ b/test/test.ccl @@ -5,4 +5,4 @@ RELTOL 1e-8 # the integration has a very small relative error (1e-7). Hence # subtracting the numerical result from the exact result loses ~7 # digits of precision. -ABSTOL 1e-3 ^test_.*_convergence_order\.asc$ +ABSTOL 1e-3 ^test_.*_convergence_order\.\.asc$ -- cgit v1.2.3