6bd97bcc956572dfada16c07262f0f5156efcf5f
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / dstr / dstr_test.C
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these libraries and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: dstr_test.C /main/6 1996/08/21 15:56:38 drk $ */
24
25 #include "dstr/dstr_test.h"
26 #include "utility/pm_random.h"
27 #include "utility/funcs.h"
28
29 #if defined(__osf__)
30 #include <sys/time.h>
31 #endif
32
33 #ifdef REGRESSION_TEST
34
35 extern
36 int
37 bset_test(unsigned int in_cts, unsigned int out_cts, 
38           pm_random& rand_gen, unsigned int cycles);
39
40 int dstr_test(int argc, char** argv)
41 {
42    if ( strcmp(argv[1], "bset_test") == 0 ) {
43       if ( argc != 5 ) {
44          cerr << "usage: bset_test in_count out_count num_cycles \n";
45          cerr << "      where: \n";
46          cerr << "      in_count: number of elements originally in the set\n";
47          cerr << "      out_count: number of elements originally not in the set\n";
48          cerr << "      num_cycles: number of tests\n";
49          return 1;
50       }   
51
52       int in_cts = atoi(argv[2]);
53       int out_cts = atoi(argv[3]);
54       int cycles = atoi(argv[4]);
55
56       struct timeval tp;
57       struct timezone tzp;
58
59       int seed = ( gettimeofday(&tp, &tzp) == 0 ) ? int(tp.tv_sec) : 19;
60
61       pm_random rand_gen;
62       rand_gen.seed(seed);
63
64       return bset_test(in_cts, out_cts, rand_gen, cycles);
65    } else
66      return 2;
67 }
68
69 #endif