Changeset bb1eabc for tests/collections
- Timestamp:
- May 4, 2026, 7:26:38 AM (5 days ago)
- Branches:
- master
- Children:
- 244335b
- Parents:
- 8403b32
- Location:
- tests/collections
- Files:
-
- 2 edited
-
.expect/string-ostream.txt (modified) (1 diff)
-
string-ostream.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/collections/.expect/string-ostream.txt
r8403b32 rbb1eabc 1 1 string 2 abcd "abcd" abcd "abcd" abcd abcd "abcd"3 abcd "abcd" abcd "abcd" abcd abcd "abcd"2 abcd "abcd" abcd "abcd" 'abcd' <abcd> abcd abcd "abcd" 3 abcd "abcd" abcd "abcd" 'abcd' <abcd> abcd abcd "abcd" 4 4 141 142 143 144 0141 0142 0143 0144 141 142 143 144 0141 0142 0143 0144 5 5 141 142 143 144 0141 0142 0143 0144 141 142 143 144 0141 0142 0143 0144 -
tests/collections/string-ostream.cfa
r8403b32 rbb1eabc 8 8 // Created On : Sat May 2 18:02:34 2026 9 9 // Last Modified By : Peter A. Buhr 10 // Last Modified On : S at May 2 19:06:22202611 // Update Count : 710 // Last Modified On : Sun May 3 23:31:07 2026 11 // Update Count : 8 12 12 // 13 13 … … 18 18 sout | "string"; 19 19 const char * cs = "abcd"; 20 sout | cs | quote( cs ) | wd(8,cs) | quote(wd(8,cs)) | wd(6,8,cs) | left(wd(8,cs)) | quote(left(wd(8,cs))); 20 sout | cs | quote(cs) | wd(8,cs) | quote(wd(8,cs)) | quote(wd(8,cs), '\'')| quote(wd(8,cs), '<', '>') 21 | wd(6,8,cs) | left(wd(8,cs)) | quote(left(wd(8,cs))); 21 22 string s = "abcd"; 22 sout | s | quote( s ) | wd(8,s) | quote(wd(8,s)) | wd(6,8,s) | left(wd(8,s)) | quote(left(wd(8,s))); 23 sout | s | quote(s) | wd(8,s) | quote(wd(8,s)) | quote(wd(8,s), '\'')| quote(wd(8,s), '<', '>') 24 | wd(6,8,s) | left(wd(8,s)) | quote(left(wd(8,s))); 23 25 24 26 sout | nobase(oct(cs)) | upcase(oct(cs)) | nobase(wd(8,oct(cs))) | left(wd(-8,oct(cs)));
Note:
See TracChangeset
for help on using the changeset viewer.