- Timestamp:
- Jan 28, 2024, 3:59:03 PM (11 months ago)
- Branches:
- master
- Children:
- 65b851a
- Parents:
- 63e129c
- Location:
- tests/io
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/io/.expect/manipulatorsInput.arm64.txt
r63e129c rb771581 30 30 22 ZC44% 31 31 23 ZC44% 32 24 x 33 25 x 34 26 x 35 27 x 36 28 x 32 37 1 yyyyyyyyyyyyyyyyyyyy 33 38 2 abcxxx … … 55 60 22 ZC44% 56 61 23 ZC44% 62 24 x 63 25 x 64 26 x 65 27 x 66 28 x 57 67 a 58 68 a 69 xxx 70 xxx 59 71 -1 60 72 15 -
tests/io/.expect/manipulatorsInput.x64.txt
r63e129c rb771581 30 30 22 ZC44% 31 31 23 ZC44% 32 24 x 33 25 x 34 26 x 35 27 x 36 28 x 32 37 1 yyyyyyyyyyyyyyyyyyyy 33 38 2 abcxxx … … 55 60 22 ZC44% 56 61 23 ZC44% 62 24 x 63 25 x 64 26 x 65 27 x 66 28 x 57 67 a 58 68 a 69 xxx 70 xxx 59 71 -1 60 72 15 -
tests/io/.expect/manipulatorsInput.x86.txt
r63e129c rb771581 30 30 22 ZC44% 31 31 23 ZC44% 32 24 x 33 25 x 34 26 x 35 27 x 36 28 x 32 37 1 yyyyyyyyyyyyyyyyyyyy 33 38 2 abcxxx … … 55 60 22 ZC44% 56 61 23 ZC44% 62 24 x 63 25 x 64 26 x 65 27 x 66 28 x 57 67 a 58 68 a 69 xxx 70 xxx 59 71 -1 60 72 15 -
tests/io/manipulatorsInput.cfa
r63e129c rb771581 7 7 // Created On : Sat Jun 8 17:58:54 2019 8 8 // Last Modified By : Peter A. Buhr 9 // Last Modified On : S at Jan 27 18:47:42202410 // Update Count : 1 229 // Last Modified On : Sun Jan 28 11:59:55 2024 10 // Update Count : 133 11 11 // 12 12 … … 125 125 sin | ignore( incl( "abc", wdi( sizeof(s), 8, s ) ) ); sout | "12" | s; 126 126 sin | ignore( excl( "abc", wdi( sizeof(s), 8, s ) ) ); sout | "13" | s; 127 sin | "\n";127 sin | nl; 128 128 129 129 s[0] = 'q'; s[1] = '\0'; … … 148 148 sin | quoted( ch, 'X', 'Y' ); sout | "27 " | ch; 149 149 sin | ignore( quoted( ch, 'X', 'Y' ) ); sout | "28 " | ch; 150 sin | "\n";150 sin | nl; 151 151 } 152 152 // Keep harmonized with collections/string-istream-manip … … 155 155 sin | c; sout | c; 156 156 sin | ignore( c ); sout | c; 157 sin | nl; 157 158 158 159 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; 161 163 162 164 signed char sc;
Note: See TracChangeset
for help on using the changeset viewer.