]> git.proxmox.com Git - mirror_ovs.git/blame - tests/test-type-props.c
Global replace of Nicira Networks.
[mirror_ovs.git] / tests / test-type-props.c
CommitLineData
a14bc59f 1/*
e0edde6f 2 * Copyright (c) 2008, 2009, 2011 Nicira, Inc.
a14bc59f
BP
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
064af421
BP
17#include <config.h>
18#include "type-props.h"
67a51a1d 19#include <inttypes.h>
064af421
BP
20#include <stdio.h>
21#include <stdlib.h>
67a51a1d 22#include <string.h>
064af421
BP
23
24#define MUST_SUCCEED(EXPRESSION) \
25 if (!(EXPRESSION)) { \
26 fprintf(stderr, "%s:%d: %s failed\n", \
27 __FILE__, __LINE__, #EXPRESSION); \
28 exit(EXIT_FAILURE); \
29 }
30
31#define TEST_TYPE(type, minimum, maximum, is_signed) \
32 MUST_SUCCEED(TYPE_IS_INTEGER(type)); \
33 MUST_SUCCEED(TYPE_IS_SIGNED(type) == is_signed); \
34 MUST_SUCCEED(TYPE_MAXIMUM(type) == maximum); \
67a51a1d
BP
35 MUST_SUCCEED(TYPE_MINIMUM(type) == minimum); \
36 sprintf(max_s, "%"PRIuMAX, (uintmax_t) (maximum)); \
37 MUST_SUCCEED(strlen(max_s) <= INT_STRLEN(type)); \
38 sprintf(min_s, "%"PRIdMAX, (intmax_t) (minimum)); \
39 MUST_SUCCEED(strlen(min_s) <= INT_STRLEN(type));
064af421
BP
40
41int
d295e8e9 42main (void)
064af421 43{
67a51a1d
BP
44 char max_s[128];
45 char min_s[128];
46
064af421
BP
47 TEST_TYPE(char, CHAR_MIN, CHAR_MAX, (CHAR_MIN < 0));
48
49 TEST_TYPE(signed char, SCHAR_MIN, SCHAR_MAX, 1);
50 TEST_TYPE(short int, SHRT_MIN, SHRT_MAX, 1);
51 TEST_TYPE(int, INT_MIN, INT_MAX, 1);
52 TEST_TYPE(long int, LONG_MIN, LONG_MAX, 1);
53 TEST_TYPE(long long int, LLONG_MIN, LLONG_MAX, 1);
54
55 TEST_TYPE(unsigned char, 0, UCHAR_MAX, 0);
56 TEST_TYPE(unsigned short int, 0, USHRT_MAX, 0);
57 TEST_TYPE(unsigned int, 0, UINT_MAX, 0);
58 TEST_TYPE(unsigned long int, 0, ULONG_MAX, 0);
59 TEST_TYPE(unsigned long long int, 0, ULLONG_MAX, 0);
60
61 MUST_SUCCEED(!(TYPE_IS_INTEGER(float)));
62 MUST_SUCCEED(!(TYPE_IS_INTEGER(double)));
63 MUST_SUCCEED(!(TYPE_IS_INTEGER(long double)));
64
65 return 0;
66}