Ignore:
Timestamp:
Jan 28, 2025, 4:12:53 PM (12 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
c699602
Parents:
71ca5b9
Message:

Removed warnings from serveral tests and removed them from the ..._TO_INVESTIGATE list. One test triggered a Cforall warning and a new test to check that has been added. collections/vector-demo has no warnings in its body, but the library it uses does have warnings and will have to move after that is fixed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/collections/sequence.cfa

    r71ca5b9 rbada452  
    3131        }
    3232        sout | "empty" | nl;
    33        
     33
    3434        for ( i; 10 ) {
    3535                add( fred, *new( 2 * i ) );
     
    5151        }
    5252        sout | nl;
    53        
     53
    5454        for ( i; 10 ) {
    5555                addTail( fred, *new( 2 * i + 1 ) );
     
    156156                int j;
    157157        };
     158        __attribute__((unused))
    158159        void ?{}( Mary & mary ) { abort(); }
    159160        void ?{}( Mary & mary, int p ) with( mary ) {
     
    176177        }
    177178        sout | "empty" | nl;
    178        
     179
    179180        for ( i; 10 ) {
    180181                add( mary, *new( 2 * i ) );
     
    187188        }
    188189        sout | nl;
    189        
     190
    190191        for ( i; 9 ) {
    191192                delete( &dropHead( mary ) );
     
    196197        }
    197198        sout | nl;
    198        
     199
    199200        for ( i; 10 ) {
    200201                addTail( mary, *new( 2 * i + 1 ) );
Note: See TracChangeset for help on using the changeset viewer.