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
|
/* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include "my_config.h"
#include "config.h"
#include <tap.h>
#include <my_global.h>
#include <my_sys.h>
#include <m_string.h>
#include <sql_string.h>
#include <my_decimal.h>
/*
Test my_decimal constuctor and assignement operators
*/
static int
test_copy_and_compare()
{
my_decimal d1,d2;
ulonglong val= 42;
ok(ulonglong2decimal(val,&d1) == 0, "Pass");
d2= d1;
my_decimal d3(d1);
ok(my_decimal_cmp(&d1, &d2) == 0, "Pass");
ok(my_decimal_cmp(&d2, &d3) == 0, "Pass");
ok(my_decimal_cmp(&d3, &d1) == 0,"Pass");
ulonglong val1, val2, val3;
ok(decimal2ulonglong(&d1, &val1) == 0, "Pass");
ok(decimal2ulonglong(&d2, &val2) == 0,"Pass");
ok(decimal2ulonglong(&d3, &val3) == 0,"Pass");
ok(val == val1,"Pass");
ok(val == val2,"Pass");
ok(val == val3,"Pass");
// The CTOR/operator=() generated by the compiler would fail here:
val= 45;
ok(ulonglong2decimal(val, &d1) == 0,"Pass");
ok(my_decimal_cmp(&d1, &d2) == 1,"Pass");
ok(my_decimal_cmp(&d1, &d3) == 1,"Pass");
return 0;
}
int main()
{
plan(13);
diag("Testing my_decimal constructor and assignment operators");
test_copy_and_compare();
return exit_status();
}
|