remove OSF1 support
[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 #ifdef REGRESSION_TEST
30
31 extern
32 int
33 bset_test(unsigned int in_cts, unsigned int out_cts, 
34           pm_random& rand_gen, unsigned int cycles);
35
36 int dstr_test(int argc, char** argv)
37 {
38    if ( strcmp(argv[1], "bset_test") == 0 ) {
39       if ( argc != 5 ) {
40          cerr << "usage: bset_test in_count out_count num_cycles \n";
41          cerr << "      where: \n";
42          cerr << "      in_count: number of elements originally in the set\n";
43          cerr << "      out_count: number of elements originally not in the set\n";
44          cerr << "      num_cycles: number of tests\n";
45          return 1;
46       }   
47
48       int in_cts = atoi(argv[2]);
49       int out_cts = atoi(argv[3]);
50       int cycles = atoi(argv[4]);
51
52       struct timeval tp;
53       struct timezone tzp;
54
55       int seed = ( gettimeofday(&tp, &tzp) == 0 ) ? int(tp.tv_sec) : 19;
56
57       pm_random rand_gen;
58       rand_gen.seed(seed);
59
60       return bset_test(in_cts, out_cts, rand_gen, cycles);
61    } else
62      return 2;
63 }
64
65 #endif