-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathinitfini.cpp
108 lines (87 loc) · 1.77 KB
/
initfini.cpp
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
//
// Copyright (c) 2005, 2006 by CodeSourcery
// Copyright (c) 2013 Stefan Seefeld
// All rights reserved.
//
// This file is part of OpenVSIP. It is made available under the
// license contained in the accompanying LICENSE.GPL file.
#include <iostream>
#include <vsip/initfin.hpp>
#include <test.hpp>
#include <cstring>
using namespace ovxx;
static void
use_the_library ()
{
// This routine should attempt to use the library in some
// relatively simple way (say, create a couple of vectors and add
// them) to check that it is properly initialized at this point.
// We cannot do this until more of the library is written.
}
static void
test_basic ()
{
vsipl v;
use_the_library ();
}
static void
test_two_objects ()
{
vsipl v1;
use_the_library ();
{
vsipl v2;
use_the_library ();
}
use_the_library ();
}
static void
test_overlapping_lifetimes ()
{
vsipl *v1 = new vsipl;
use_the_library ();
vsipl *v2 = new vsipl;
use_the_library ();
delete v1;
use_the_library ();
delete v2;
}
static void
test_cmdline_options ()
{
// As at present no VSIPL++ command line options are defined,
// we just test that the constructor is callable with some random
// strings in argv.
const char *argv_const[] = { "foo", "bar", "baz", 0 };
char **argv = const_cast<char **>(argv_const);
int argc = 3;
vsipl v(argc, argv);
use_the_library();
}
int
main (int argc, char** argv)
{
int test = 0;
for (int i=0; i<argc; ++i)
{
if (!std::strcmp(argv[i], "-test"))
test = atoi(argv[++i]);
}
switch(test)
{
case 0:
test_basic ();
break;
case 1:
test_two_objects ();
break;
case 2:
test_overlapping_lifetimes ();
break;
case 3:
test_cmdline_options ();
break;
default:
test_assert(0);
}
}