summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/testv4.pp
blob: 49d792ef624752390839ac0ec3314c1c3d9646d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{ %VERSION=1.1 }
program testv3;

uses variants,varutils;

Procedure TestConvert(Var V : Variant);

Var
  I64 : Int64;
  LI  : Longint;
  SI  : Smallint;
  HI  : Shortint;
  Q : QWord;
  C  : Cardinal;
  W  : Word;
  B  : Byte;

begin
  DumpVariant(TVarData(V));
  I64:=V;
  Writeln('To Int64 : ',I64);
  LI:=V;
  Writeln('To Longint : ',LI);
  SI:=V;
  Writeln('To Smallint : ',SI);
  HI:=V;
  Writeln('To Shortint : ',HI);
  Q:=V;
  Writeln('To QWord : ',Q);
  C:=V;
  Writeln('To Cardinal : ',C);
  W:=V;
  Writeln('To Word : ',W);
  B:=V;
  Writeln('To Byte : ',B);
end;


Procedure TestLongInt;

Var
  V : Variant;
  I : LongInt;

begin
  I:=1;
  V:=I;
  TestConvert(V);
end;

Procedure TestSmallInt;

Var
  V : Variant;
  I : SmallInt;

begin
  I:=2;
  V:=I;
  TestConvert(V);
end;

Procedure TestShortInt;

Var
  V : Variant;
  I : ShortInt;

begin
  I:=3;
  V:=I;
  TestConvert(V);
end;

Procedure TestCardinal;

Var
  V : Variant;
  C : Cardinal;

begin
  C:=4;
  V:=C;
  TestConvert(V);
end;

Procedure TestWord;


Var
  V : Variant;
  W : Word;

begin
  W:=5;
  V:=W;
  TestConvert(V);
end;

Procedure TestByte;


Var
  V : Variant;
  B : Byte;

begin
  B:=6;
  V:=B;
  TestConvert(V);
end;

// 64 bit values

Procedure TestInt64;

Var
  V : Variant;
  I : int64;

begin
  I:=7;
  V:=I;
  TestConvert(V);
end;


Procedure TestQWord;

Var
  V : Variant;
  Q : QWord;

begin
  Q:=8;
  V:=Q;
  TestConvert(V);
end;

begin
  TestLongint;
  TestSmallInt;
  TestShortInt;
  TestCardinal;
  TestWord;
  TestByte;
  TestInt64;
  TestQWord;
end.