aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhaas <rhaas@4f5cb9a8-4dd8-4c2d-9bbd-173fa4467843>2014-05-05 15:15:57 +0000
committerrhaas <rhaas@4f5cb9a8-4dd8-4c2d-9bbd-173fa4467843>2014-05-05 15:15:57 +0000
commit3aaadc72368ff9b1724f877d320478d90ac3ffa7 (patch)
tree88ccf6ac36340928cb4a5a11cb59d6f7bc757b8a
parent19af94f4c4d2c40e63f44416fca972b6ad557673 (diff)
correct regex to mathc convergence order output filesvn
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/Multipole/trunk@114 4f5cb9a8-4dd8-4c2d-9bbd-173fa4467843
-rw-r--r--src/utils.cc2
-rw-r--r--test/test.ccl2
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$