source: tests/manipulatorsOutput2.cfa @ 8e2cb4a

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 8e2cb4a was ca8824d, checked in by Peter A. Buhr <pabuhr@…>, 5 years ago

add manipulator input and output tests

  • Property mode set to 100644
File size: 2.4 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2019 University of Waterloo
3//
4// manipulatorsOutput2.cfa --
5//
6// Author           : Peter A. Buhr
7// Created On       : Sat Jun  8 18:04:11 2019
8// Last Modified By : Peter A. Buhr
9// Last Modified On : Mon Jun 10 12:37:57 2019
10// Update Count     : 8
11//
12
13#include <fstream.hfa>
14
15int main() {
16        sout | nl;
17    sout | bin(0) | bin(27HH) | bin(27H) | bin(27) | bin(27L);
18    sout | bin(-27HH) | bin(-27H) | bin(-27) | bin(-27L);
19    sout | oct(0) | oct(27HH) | oct(27H) | oct(27) | oct(27L);
20    sout | oct(-27HH) | oct(-27H) | oct(-27) | oct(-27L);
21    sout | hex(0) | hex(27HH) | hex(27H) | hex(27) | hex(27L);
22    sout | hex(-27HH) | hex(-27H) | hex(-27) | hex(-27L);
23    sout | hex(0.0) | hex(27.5F) | hex(27.5) | hex(27.5L);
24    sout | hex(-27.5F) | hex(-27.5) | hex(-27.5L);
25        sout | sci(0.0) | sci(27.5) | sci(-27.5);
26        sout | upcase(bin(27)) | upcase(hex(27)) | upcase(27.5e-10) | upcase(hex(27.5));
27        sout | nobase(bin(27)) | nobase(oct(27)) | nobase(hex(27));
28    sout | 0. | nodp(0.) | 27.0 | nodp(27.0) | nodp(27.5);
29    sout | sign(27) | sign(-27) | sign(27.) | sign(-27.) | sign(27.5) | sign(-27.5);
30        sout | wd( 4, 34) | wd( 3, 34 ) | wd( 2, 34 );
31        sout | wd( 10, 4.) | wd( 9, 4. ) | wd( 8, 4. );
32        sout | wd( 4, "ab" ) | wd( 3, "ab" ) | wd( 2, "ab" );
33        sout | wd( 4, 34567 ) | wd( 3, 34567 ) | wd( 2, 34567 );
34        sout | wd( 4, 3456. ) | wd( 3, 3456. ) | wd( 2, 3456. );
35        sout | wd( 4, "abcde" ) | wd( 3, "abcde" ) | wd( 2,"abcde" );
36        sout | wd(4,3, 34) | wd(8,4, 34) | wd(10,10, 34);
37        sout | wd( 4,1, 3456 ) | wd( 8,2, 3456 ) | wd( 10,3, 3456 );
38        sout | wd( 4,0, 0 ) | wd( 3,10, 34 );
39        sout | wd(6,3, 27.5) | wd(8,1, 27.5) | wd(8,0, 27.5) | wd(3,8, 27.5);
40        sout | wd(6,3, 27.0) | wd(6,3, 27.5) | wd(8,1, 27.5) | wd(8,0, 27.5) | wd(3,8, 27.5);
41        sout | left(wd(4,27)) | left(wd(10,27.)) | left(wd(10,27.5)) | left(wd(4,3,27)) | left(wd(10,3,27.5));
42        sout | ws(6,6, 234.567) | ws(6,5, 234.567) | ws(6,4, 234.567) | ws(6,3, 234.567);
43        sout | ws(6,6, 234567.) | ws(6,5, 234567.) | ws(6,4, 234567.) | ws(6,3, 234567.);
44        sout | ws(3,6, 234567.) | ws(4,6, 234567.) | ws(5,6, 234567.) | ws(6,6, 234567.);
45        sout | wd(6, "abcd") | wd(8, "abcd") | wd(2, "abcd");
46        sout | wd(6,8, "abcd") | wd(6,8, "abcdefghijk") | wd(6,3, "abcd");
47    sout | pad0(wd(4,27)) | pad0(wd(4,3,27)) | pad0(wd(8,3,27.5));
48
49//      sexit | 3 | 4;
50}
51
52// Local Variables: //
53// tab-width: 4 //
54// compile-command: "cfa -Wall -Wextra amanipulatorsOutput2.cfa" //
55// End: //
Note: See TracBrowser for help on using the repository browser.