Changeset b771581


Ignore:
Timestamp:
Jan 28, 2024, 3:59:03 PM (3 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
65b851a
Parents:
63e129c
Message:

add more input tests for recent changes

Location:
tests/io
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • tests/io/.expect/manipulatorsInput.arm64.txt

    r63e129c rb771581  
    303022              ZC44%
    313123              ZC44%
     3224 x
     3325 x
     3426 x
     3527 x
     3628 x
    32371 yyyyyyyyyyyyyyyyyyyy
    33382 abcxxx
     
    556022              ZC44%
    566123              ZC44%
     6224 x
     6325 x
     6426 x
     6527 x
     6628 x
    5767a
    5868a
     69xxx
     70xxx
    5971-1
    607215
  • tests/io/.expect/manipulatorsInput.x64.txt

    r63e129c rb771581  
    303022              ZC44%
    313123              ZC44%
     3224 x
     3325 x
     3426 x
     3527 x
     3628 x
    32371 yyyyyyyyyyyyyyyyyyyy
    33382 abcxxx
     
    556022              ZC44%
    566123              ZC44%
     6224 x
     6325 x
     6426 x
     6527 x
     6628 x
    5767a
    5868a
     69xxx
     70xxx
    5971-1
    607215
  • tests/io/.expect/manipulatorsInput.x86.txt

    r63e129c rb771581  
    303022              ZC44%
    313123              ZC44%
     3224 x
     3325 x
     3426 x
     3527 x
     3628 x
    32371 yyyyyyyyyyyyyyyyyyyy
    33382 abcxxx
     
    556022              ZC44%
    566123              ZC44%
     6224 x
     6325 x
     6426 x
     6527 x
     6628 x
    5767a
    5868a
     69xxx
     70xxx
    5971-1
    607215
  • tests/io/manipulatorsInput.cfa

    r63e129c rb771581  
    77// Created On       : Sat Jun  8 17:58:54 2019
    88// Last Modified By : Peter A. Buhr
    9 // Last Modified On : Sat Jan 27 18:47:42 2024
    10 // Update Count     : 122
     9// Last Modified On : Sun Jan 28 11:59:55 2024
     10// Update Count     : 133
    1111//
    1212
     
    125125                sin | ignore( incl( "abc", wdi( sizeof(s), 8, s ) ) ); sout | "12" | s;
    126126                sin | ignore( excl( "abc", wdi( sizeof(s), 8, s ) ) ); sout | "13" | s;
    127                 sin | "\n";
     127                sin | nl;
    128128
    129129                s[0] = 'q'; s[1] = '\0';
     
    148148                sin | quoted( ch, 'X', 'Y' );                                   sout | "27 " | ch;
    149149                sin | ignore( quoted( ch, 'X', 'Y' ) );                 sout | "28 " | ch;
    150                 sin | "\n";
     150                sin | nl;
    151151        }
    152152        // Keep harmonized with collections/string-istream-manip
     
    155155                sin | c;                                                                                sout | c;
    156156                sin | ignore( c );                                                              sout | c;
     157                sin | nl;
    157158
    158159                char ca[3] = { 'a', 'b', 'c' };
    159                 sin | wdi( 4, (char &)*&ca[0] );                                        sout | ca[0] | ca[1] | ca[2];
    160                 sin | ignore( wdi( 4, (char &)*&ca[0] ) );              sout | ca[0] | ca[1] | ca[2];
     160                sin | wdi( sizeof(ca), ca[0] );                                 sout | ca[0] | ca[1] | ca[2];
     161                sin | ignore( wdi( sizeof(ca), ca[0] ) );               sout | ca[0] | ca[1] | ca[2];
     162                sin | nl;
    161163
    162164                signed char sc;
Note: See TracChangeset for help on using the changeset viewer.