Skip to content

Commit 5c2e79a

Browse files
committed
debug ci
1 parent 20e25f4 commit 5c2e79a

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

openvdb/openvdb/io/Codec.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ namespace internal {
3939

4040
void initialize()
4141
{
42+
std::cerr << "Initialize: " << codecs::BoolCodec<BoolGrid>::name() << std::endl;
4243
CodecRegistry::registerCodec<codecs::BoolCodec<BoolGrid>>();
4344
}
4445

openvdb/openvdb/unittest/TestCodec.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,9 @@ void testCodecIOImpl(
235235
// initialize to register all the grids and codecs
236236
openvdb::initialize();
237237
// ensure the codec is registered
238+
if (!openvdb::io::CodecRegistry::isRegistered(GridT::gridType())) {
239+
std::cerr << "Codec not registered: " << GridT::gridType() << std::endl;
240+
}
238241
ASSERT_TRUE(openvdb::io::CodecRegistry::isRegistered(GridT::gridType()));
239242
// test the io implementation (codec)
240243
testIOImpl<GridT>(gridName, bgValue, fillValue);

0 commit comments

Comments
 (0)