Ignore:
Timestamp:
May 9, 2023, 12:38:59 PM (14 months ago)
Author:
caparsons <caparson@…>
Branches:
ADT, ast-experimental, master
Children:
e50fce1
Parents:
330b856
Message:

removed some redundant tests and added some instrumentation to help track down bug

File:
1 moved

Legend:

Unmodified
Added
Removed
  • tests/concurrent/waituntil/one_chan.cfa

    r330b856 r253a78f  
    3535        printf("waiting for empty channels\n");
    3636        size_t C_count = get_count( C );
     37        size_t LINE_COUNTER = 0;
    3738        while( C_count > 0 ) {
    3839            C_count = get_count( C );
    3940        }
     41        LINE_COUNTER = 7;
    4042        printf("sending sentinels\n");
     43        LINE_COUNTER = 11;
    4144        for ( i; numServers ) insert( C, -1 );
     45        LINE_COUNTER = 13;
    4246        printf("joining servers\n");
     47        LINE_COUNTER = 17;
    4348    }
     49    LINE_COUNTER = 19;
    4450    if ( total != globalTotal )
    4551        printf("CHECKSUM MISMATCH!! Main thread got %lld, server sum is %lld\n", total, globalTotal);
Note: See TracChangeset for help on using the changeset viewer.