remove version in all files
[dpdk.git] / app / test / test_errno.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  * 
7  *   Redistribution and use in source and binary forms, with or without 
8  *   modification, are permitted provided that the following conditions 
9  *   are met:
10  * 
11  *     * Redistributions of source code must retain the above copyright 
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright 
14  *       notice, this list of conditions and the following disclaimer in 
15  *       the documentation and/or other materials provided with the 
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its 
18  *       contributors may be used to endorse or promote products derived 
19  *       from this software without specific prior written permission.
20  * 
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  * 
33  */
34
35 #include <stdint.h>
36 #include <stdio.h>
37 #include <stdarg.h>
38 #include <errno.h>
39 #include <string.h>
40 #include <rte_per_lcore.h>
41 #include <rte_errno.h>
42 #include <rte_string_fns.h>
43
44 #include <cmdline_parse.h>
45
46 #include "test.h"
47
48 int
49 test_errno(void)
50 {
51         const char *rte_retval;
52         const char *libc_retval;
53         const char unknown_code_result[] = "Unknown error %d";
54         char expected_libc_retval[sizeof(unknown_code_result)+3];
55
56         /* use a small selection of standard errors for testing */
57         int std_errs[] = {EAGAIN, EBADF, EACCES, EINTR, EINVAL};
58         /* test ALL registered RTE error codes for overlap */
59         int rte_errs[] = {E_RTE_SECONDARY, E_RTE_NO_CONFIG, E_RTE_NO_TAILQ};
60         unsigned i;
61
62         rte_errno = 0;
63         if (rte_errno != 0)
64                 return -1;
65         /* check for standard errors we return the same as libc */
66         for (i = 0; i < sizeof(std_errs)/sizeof(std_errs[0]); i++){
67                 rte_retval = rte_strerror(std_errs[i]);
68                 libc_retval = strerror(std_errs[i]);
69                 printf("rte_strerror: '%s', strerror: '%s'\n",
70                                 rte_retval, libc_retval);
71                 if (strcmp(rte_retval, libc_retval) != 0)
72                         return -1;
73         }
74         /* for rte-specific errors ensure we return a different string
75          * and that the string for libc is for an unknown error
76          */
77         for (i = 0; i < sizeof(rte_errs)/sizeof(rte_errs[0]); i++){
78                 rte_retval = rte_strerror(rte_errs[i]);
79                 libc_retval = strerror(rte_errs[i]);
80                 printf("rte_strerror: '%s', strerror: '%s'\n",
81                                 rte_retval, libc_retval);
82                 if (strcmp(rte_retval, libc_retval) == 0)
83                         return -1;
84                 /* generate appropriate error string for unknown error number
85                  * and then check that this is what we got back. If not, we have
86                  * a duplicate error number that conflicts with errno.h */
87                 rte_snprintf(expected_libc_retval, sizeof(expected_libc_retval),
88                                 unknown_code_result, rte_errs[i]);
89                 if (strcmp(expected_libc_retval, libc_retval) != 0){
90                         printf("Error, duplicate error code %d\n", rte_errs[i]);
91                         return -1;
92                 }
93         }
94
95         /* ensure that beyond RTE_MAX_ERRNO, we always get an unknown code */
96         rte_retval = rte_strerror(RTE_MAX_ERRNO + 1);
97         libc_retval = strerror(RTE_MAX_ERRNO + 1);
98         rte_snprintf(expected_libc_retval, sizeof(expected_libc_retval),
99                         unknown_code_result, RTE_MAX_ERRNO + 1);
100         printf("rte_strerror: '%s', strerror: '%s'\n",
101                         rte_retval, libc_retval);
102         if ((strcmp(rte_retval, libc_retval) != 0) ||
103                         (strcmp(expected_libc_retval, libc_retval) != 0)){
104                 printf("Failed test for RTE_MAX_ERRNO + 1 value\n");
105                 return -1;
106         }
107
108         return 0;
109 }