Changeset 8cffa4f for tests/collections
- Timestamp:
- Oct 5, 2023, 2:30:54 PM (15 months ago)
- Branches:
- master
- Children:
- b67b632
- Parents:
- bf1cbde
- Location:
- tests/collections
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/collections/.expect/string-istream-manip.txt
rbf1cbde r8cffa4f 12 12 12 wwwwwwww 13 13 13 wwwwwwww 14 14 cccc 15 15 14 16 1 yyyyyyyyyyyyyyyyyyyy 15 17 2 abcxxx … … 25 27 12 wwwwwwww 26 28 13 wwwwwwww 29 14 cccc 30 15 -
tests/collections/.in/string-istream-manip.txt
rbf1cbde r8cffa4f 5 5 abcyyy 6 6 aaaaaaaaxxxxxxxxaabbccbbdddwwwbbbbbbbbwwwwwwwwaaaaaaaawwwwwwww 7 uuuuuccccuuuuu 7 8 abc 8 9 cccccb … … 11 12 abcyyy 12 13 aaaaaaaaxxxxxxxxaabbccbbdddwwwbbbbbbbbwwwwwwwwaaaaaaaawwwwwwww 14 uuuuuccccuuuuu -
tests/collections/string-istream-manip.cfa
rbf1cbde r8cffa4f 23 23 sin | ignore( incl( "abc", wdi( 8, s ) ) ); sout | "12" | s; 24 24 sin | ignore( excl( "abc", wdi( 8, s ) ) ); sout | "13" | s; 25 } 25 26 s = "q"; 27 sin | incl( "abc", s ); sout | "14" | s; 28 s = "q"; 29 sin | excl( "u", s ); sout | "15" | s; 30 sin | skip( "u" ); 31 sin | "\n"; 32 } 26 33 { 27 34 string_res s = "yyyyyyyyyyyyyyyyyyyy"; … … 41 48 sin | ignore( incl( "abc", wdi( 8, s ) ) ); sout | "12" | s; 42 49 sin | ignore( excl( "abc", wdi( 8, s ) ) ); sout | "13" | s; 50 51 s = "q"; 52 sin | incl( "abc", s ); sout | "14" | s; 53 s = "q"; 54 sin | excl( "u", s ); sout | "15" | s; 55 sin | skip( "u" ); 56 sin | "\n"; 43 57 } 44 58 }
Note: See TracChangeset
for help on using the changeset viewer.