Skip to content

Commit 80db493

Browse files
committed
add additional debugging output in ltx testcase
1 parent 7bb09ba commit 80db493

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/test_interpolation_on_ltx_mesh.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,21 @@ int main(const int argc, char* argv[])
5757
if (returnCode != 0)
5858
return returnCode;
5959

60+
printf("[INFO] degas2_mesh_filename=%s\n", degas2_mesh_filename.c_str());
61+
printf("[INFO] ltx_mesh_base_filename=%s\n", ltx_mesh_base_filename.c_str());
62+
printf("[INFO] data_root_dir=%s\n", data_root_dir.c_str());
63+
6064
return session.run(argc, argv);
6165
}
6266

6367
TEST_CASE("Test Interpolation on LTX Mesh", "[interpolation]")
6468
{
6569
// ---------------------------- Loading Mesh ------------------- //
70+
printf("[INFO] Creating Omega_h Library\n");
6671
auto lib = Omega_h::Library{};
72+
printf("[INFO] Creating Omega_h mesh\n");
6773
Omega_h::Mesh degas2_mesh(&lib);
74+
printf("[INFO] Reading binary mesh with name %s\n", degas2_mesh_filename.c_str());
6875
Omega_h::binary::read(degas2_mesh_filename, lib.world(), &degas2_mesh);
6976

7077
// --------------------- Initialize Interpolators -------------- //

0 commit comments

Comments
 (0)