From 05e7aede37c07c4acc0bd26deab9038305fe7121 Mon Sep 17 00:00:00 2001 From: Jeff Peterson Date: Thu, 6 Mar 2025 22:13:37 -0700 Subject: [PATCH] Whoops... add back in TEST_SESAME guard --- test/test_modifier_floored_energy.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/test_modifier_floored_energy.cpp b/test/test_modifier_floored_energy.cpp index 4dfb28add6..df2e85cd11 100644 --- a/test/test_modifier_floored_energy.cpp +++ b/test/test_modifier_floored_energy.cpp @@ -189,24 +189,24 @@ SCENARIO("Test the floored energy modifer for a suite of EOS", Gruneisen(C0_G, S1_G, S2_G, S3_G, Gamma0_G, b_G, rho0_G, T0, P0, Cv_G)); // Tabular EOS parameters (when used) -// #ifdef SINGULARITY_TEST_SESAME +#ifdef SINGULARITY_TEST_SESAME #ifdef SINGULARITY_USE_SPINER_WITH_HDF5 constexpr int matid = 3337; const std::string eos_file = "../materials.sp5"; EOS spiner_eos = FlooredEnergy(SpinerEOSDependsRhoT(eos_file, matid)); #endif - // #endif +#endif // Put EOS in a vector and put EOS on device std::vector eos_vec = { air_eos, davis_r_eos, jwl_eos, gruneisen_eos -// #ifdef SINGULARITY_TEST_SESAME +#ifdef SINGULARITY_TEST_SESAME #ifdef SINGULARITY_USE_SPINER_WITH_HDF5 , spiner_eos #endif - // #endif +#endif }; const size_t n_eos = eos_vec.size();