Disable all code related to libXp
[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 librararies 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(__uxp__) 
30 #include <sys/times.h>
31 #elif __osf__
32 #include <sys/time.h>
33 #endif
34
35 #ifdef REGRESSION_TEST
36
37 extern
38 int
39 bset_test(unsigned int in_cts, unsigned int out_cts, 
40           pm_random& rand_gen, unsigned int cycles);
41
42 int dstr_test(int argc, char** argv)
43 {
44    if ( strcmp(argv[1], "bset_test") == 0 ) {
45       if ( argc != 5 ) {
46          cerr << "usage: bset_test in_count out_count num_cycles \n";
47          cerr << "      where: \n";
48          cerr << "      in_count: number of elements originally in the set\n";
49          cerr << "      out_count: number of elements originally not in the set\n";
50          cerr << "      num_cycles: number of tests\n";
51          return 1;
52       }   
53
54       int in_cts = atoi(argv[2]);
55       int out_cts = atoi(argv[3]);
56       int cycles = atoi(argv[4]);
57
58 #ifdef __uxp__
59       int seed;
60       struct tms tp;
61       if ((seed = (int)times(&tp)) < 0)
62         seed = 19;
63 #else
64       struct timeval tp;
65       struct timezone tzp;
66
67       int seed = ( gettimeofday(&tp, &tzp) == 0 ) ? int(tp.tv_sec) : 19;
68 #endif
69       pm_random rand_gen;
70       rand_gen.seed(seed);
71
72       return bset_test(in_cts, out_cts, rand_gen, cycles);
73    } else
74      return 2;
75 }
76
77 #endif