Ignore:
Timestamp:
Apr 10, 2025, 7:34:12 AM (5 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
5ca1766
Parents:
9018dcf
Message:

update excepted output for string tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/collections/string-api-coverage.cfa

    r9018dcf r7e4f226  
    392392
    393393    sout
    394         | include( alphabet, cc_cba )  // 3
    395         | exclude( alphabet, cc_cba )  // 0
    396         | include( alphabet, cc_onml )  // 0
    397         | exclude( alphabet, cc_onml )  // 11
    398         | include( alphabet, cc_alphabet )  // 26
    399         | exclude( alphabet, cc_alphabet ); // 0
     394        | (return size_t)include( alphabet, cc_cba )  // 3
     395        | (return size_t)exclude( alphabet, cc_cba )  // 0
     396        | (return size_t)include( alphabet, cc_onml )  // 0
     397        | (return size_t)exclude( alphabet, cc_onml )  // 11
     398        | (return size_t)include( alphabet, cc_alphabet )  // 26
     399        | (return size_t)exclude( alphabet, cc_alphabet ); // 0
     400
     401    sout
     402        | (return string)include( alphabet, cc_cba )  // "abc"
     403        | (return string)exclude( alphabet, cc_cba )  // ""
     404        | (return string)include( alphabet, cc_onml )  // ""
     405        | (return string)exclude( alphabet, cc_onml )  // "abcdefghijk"
     406        | (return string)include( alphabet, cc_alphabet )  // "abcdefghijklmnopqrstuvwxyz"
     407        | (return string)exclude( alphabet, cc_alphabet ); // ""
    400408}
    401 
Note: See TracChangeset for help on using the changeset viewer.