Skip to content

Commit b846028

Browse files
authored
Merge pull request #6937 from jsquyres/pr/remove-non-existent-symbols-in-tests
Update OPAL DDT variable names
2 parents 8b6f2d9 + 2ab8109 commit b846028

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

test/datatype/position.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,9 @@ static void dump_ldi( ddt_ldi_t* buffer, int start_pos, int end_pos )
200200
#endif
201201

202202
#if (OPAL_ENABLE_DEBUG == 1) && (OPAL_C_HAVE_VISIBILITY == 0)
203-
extern bool opal_unpack_debug;
204-
extern bool opal_pack_debug;
205-
extern bool opal_position_debug ;
203+
extern bool opal_ddt_unpack_debug;
204+
extern bool opal_ddt_pack_debug;
205+
extern bool opal_ddt_position_debug ;
206206
#endif /* OPAL_ENABLE_DEBUG */
207207

208208
static char* bytes_dump( void* src, size_t cnt )
@@ -238,9 +238,9 @@ int main( int argc, char* argv[] )
238238
ompi_datatype_init();
239239

240240
#if (OPAL_ENABLE_DEBUG == 1) && (OPAL_C_HAVE_VISIBILITY == 0)
241-
opal_unpack_debug = false;
242-
opal_pack_debug = false;
243-
opal_position_debug = false;
241+
opal_ddt_unpack_debug = false;
242+
opal_ddt_pack_debug = false;
243+
opal_ddt_position_debug = false;
244244
#endif /* OPAL_ENABLE_DEBUG */
245245

246246
create_segments( datatype, data_count, fragment_size,

test/datatype/position_noncontig.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,9 @@ unpack_segments( ompi_datatype_t* datatype, int count,
181181
}
182182

183183
#if (OPAL_ENABLE_DEBUG == 1) && (OPAL_C_HAVE_VISIBILITY == 0)
184-
extern bool opal_unpack_debug;
185-
extern bool opal_pack_debug;
186-
extern bool opal_position_debug ;
184+
extern bool opal_ddt_unpack_debug;
185+
extern bool opal_ddt_pack_debug;
186+
extern bool opal_ddt_position_debug ;
187187
#endif /* OPAL_ENABLE_DEBUG */
188188

189189
int main( int argc, char* argv[] )
@@ -209,9 +209,9 @@ int main( int argc, char* argv[] )
209209
ompi_datatype_commit(&datatype);
210210

211211
#if (OPAL_ENABLE_DEBUG == 1) && (OPAL_C_HAVE_VISIBILITY == 0)
212-
opal_unpack_debug = false;
213-
opal_pack_debug = false;
214-
opal_position_debug = false;
212+
opal_ddt_unpack_debug = false;
213+
opal_ddt_pack_debug = false;
214+
opal_ddt_position_debug = false;
215215
#endif /* OPAL_ENABLE_DEBUG */
216216

217217
create_segments( datatype, 1, fragment_size,

0 commit comments

Comments
 (0)