From 4304115e0a9f3ece8cd6ebaa1e1d29336ac86e33 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Thu, 14 Jul 2005 22:02:43 +0000 Subject: [PATCH] Activate the assert as now the ddt engine handle correctly the ref count on the datatypes. This commit was SVN r6502. --- ompi/datatype/ddt_test.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ompi/datatype/ddt_test.c b/ompi/datatype/ddt_test.c index f17d734fca..4f1fbc4168 100644 --- a/ompi/datatype/ddt_test.c +++ b/ompi/datatype/ddt_test.c @@ -769,6 +769,7 @@ int local_copy_with_convertor_2datatypes( ompi_datatype_t* send_type, int send_c } { int i; + printf( "print the packed buffer as ints:\n" ); for( i = 0; i < 7; i++ ) printf( "%x\n", ((int*)ptemp)[i] ); } @@ -958,7 +959,7 @@ int main( int argc, char* argv[] ) OBJ_RELEASE( pdt1 ); assert( pdt1 == NULL ); OBJ_RELEASE( pdt2 ); assert( pdt2 == NULL ); - OBJ_RELEASE( pdt3 ); /*assert( pdt3 == NULL );*/ + OBJ_RELEASE( pdt3 ); assert( pdt3 == NULL ); pdt = test_struct_char_double(); if( outputFlags & CHECK_PACK_UNPACK ) {