Changeset 3bfa80f


Ignore:
Timestamp:
May 3, 2026, 8:27:54 AM (3 days ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
2fd3de7
Parents:
c136863
Message:

replace utf8 single quote with ascii single quote

Location:
tests/collections
Files:
2 edited

Legend:

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

    rc136863 r3bfa80f  
    86863 0 0 11 26 0
    8787abc   abcdefghijk abcdefghijklmnopqrstuvwxyz
    88 8 3 3
    89 1FeC34aB .,; XXX
     888 6 3
     891FeC34aB .,;'!" XXX
    90900 0 3
    91911  XXX
  • tests/collections/string-api-coverage.cfa

    rc136863 r3bfa80f  
    158158
    159159
    160 
    161 
    162160    sout | len(s); // 5
    163161
     
    410408        sout
    411409                | (return size_t)include( "1FeC34aB", isxdigit )
    412                 | (return size_t)include( ".,;!\"", ispunct )
     410                | (return size_t)include( ".,;'!\"", ispunct )
    413411                | (return size_t)include( "XXXx", isupper );
    414412
    415413        sout
    416414                | (return string)include( "1FeC34aB", isxdigit )
    417                 | (return string)include( ".,;!\"", ispunct )
     415                | (return string)include( ".,;'!\"", ispunct )
    418416                | (return string)include( "XXXx", isupper );
    419417
    420418        sout
    421419                | (return size_t)exclude( "1FeC34aB", isdigit )
    422                 | (return size_t)exclude( ".,;!\"", ispunct )
     420                | (return size_t)exclude( ".,;'!\"", ispunct )
    423421                | (return size_t)exclude( "XXXx", islower );
    424422
    425423        sout
    426424                | (return string)exclude( "1FeC34aB", isalpha )
    427                 | (return string)exclude( ".,;!\"", ispunct )
     425                | (return string)exclude( ".,;'!\"", ispunct )
    428426                | (return string)exclude( "XXXx", islower );
    429427}
Note: See TracChangeset for help on using the changeset viewer.