@@ -219,9 +219,11 @@ subroutine run_hashmap_tests(error, map, name, hasher)
219
219
call check(error, exists, " Failure on int8 interface for get_other_data after set_other_data for" // trim (name))
220
220
select type (data )
221
221
type is (integer )
222
- call check(error, data == (i+ test_size), " Failure on int8 interface set_other_data data check for" // trim (name))
222
+ call check(error, data == (i+ test_size), &
223
+ " Failure on int8 interface set_other_data data check for" // trim (name))
223
224
class default
224
- call test_failed(error, " Int8 interface set_other_data get_other_data didn't return an integer for " // trim (name))
225
+ call test_failed(error, &
226
+ " Int8 interface set_other_data get_other_data didn't return an integer for " // trim (name))
225
227
end select
226
228
227
229
! Check entry count and very it matches expected entry count
@@ -242,7 +244,8 @@ subroutine run_hashmap_tests(error, map, name, hasher)
242
244
call map % key_test(key_array, exists )
243
245
call check(error, .not. exists, " Key exists after removal on int8 interface for " // trim (name))
244
246
245
- call check( error, map % entries() == (test_size- i), " Failure on int8 interface remove entery count for " // trim (name) )
247
+ call check( error, map % entries() == (test_size- i), &
248
+ " Failure on int8 interface remove entery count for " // trim (name) )
246
249
enddo
247
250
end block
248
251
@@ -284,9 +287,11 @@ subroutine run_hashmap_tests(error, map, name, hasher)
284
287
call check(error, exists, " Failure on int32 interface for get_other_data after set_other_data for" // trim (name))
285
288
select type (data )
286
289
type is (integer )
287
- call check(error, data == (i+ test_size), " Failure on int32 interface set_other_data data check for" // trim (name))
290
+ call check(error, data == (i+ test_size), &
291
+ " Failure on int32 interface set_other_data data check for" // trim (name))
288
292
class default
289
- call test_failed(error, " Int32 interface set_other_data get_other_data didn't return an integer for " // trim (name))
293
+ call test_failed(error, &
294
+ " Int32 interface set_other_data get_other_data didn't return an integer for " // trim (name))
290
295
end select
291
296
292
297
call check( error, map % entries() == i, " Failure on int32 interface add entery count for " // trim (name) )
@@ -347,12 +352,15 @@ subroutine run_hashmap_tests(error, map, name, hasher)
347
352
348
353
! Get updated value and verify it is correct.
349
354
call map % get_other_data( char_key, data , exists )
350
- call check(error, exists, " Failure on char interface for get_other_data after set_other_data for" // trim (name))
355
+ call check(error, exists, &
356
+ " Failure on char interface for get_other_data after set_other_data for" // trim (name))
351
357
select type (data )
352
358
type is (integer )
353
- call check(error, data == (i+ test_size), " Failure on char interface set_other_data data check for" // trim (name))
359
+ call check(error, data == (i+ test_size), &
360
+ " Failure on char interface set_other_data data check for" // trim (name))
354
361
class default
355
- call test_failed(error, " Char interface set_other_data get_other_data didn't return an integer for " // trim (name))
362
+ call test_failed(error, &
363
+ " Char interface set_other_data get_other_data didn't return an integer for " // trim (name))
356
364
end select
357
365
358
366
call check( error, map % entries() == i, " Failure on char interface add entery count for " // trim (name) )
@@ -372,7 +380,8 @@ subroutine run_hashmap_tests(error, map, name, hasher)
372
380
call map % key_test(char_key, exists )
373
381
call check(error, .not. exists, " Key exists after removal on char interface for " // trim (name))
374
382
375
- call check( error, map % entries() == (test_size- i), " Failure on char interface remove entery count for " // trim (name) )
383
+ call check( error, map % entries() == (test_size- i), &
384
+ " Failure on char interface remove entery count for " // trim (name) )
376
385
enddo
377
386
end block
378
387
0 commit comments