X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-type-props.c;h=3f2472545fa9a4e6ccbbf76122fc1a5bccb9d22a;hb=003ce655b7116d18c86a74c50391e54990346931;hp=67dabae8672b64da40b078293aa9b088d2d95f94;hpb=064af42167bf4fc9aaea2702d80ce08074b889c0;p=sliver-openvswitch.git diff --git a/tests/test-type-props.c b/tests/test-type-props.c index 67dabae86..3f2472545 100644 --- a/tests/test-type-props.c +++ b/tests/test-type-props.c @@ -1,7 +1,25 @@ +/* + * Copyright (c) 2008, 2009, 2011 Nicira, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include #include "type-props.h" +#include #include #include +#include #define MUST_SUCCEED(EXPRESSION) \ if (!(EXPRESSION)) { \ @@ -14,11 +32,18 @@ MUST_SUCCEED(TYPE_IS_INTEGER(type)); \ MUST_SUCCEED(TYPE_IS_SIGNED(type) == is_signed); \ MUST_SUCCEED(TYPE_MAXIMUM(type) == maximum); \ - MUST_SUCCEED(TYPE_MINIMUM(type) == minimum); + MUST_SUCCEED(TYPE_MINIMUM(type) == minimum); \ + sprintf(max_s, "%"PRIuMAX, (uintmax_t) (maximum)); \ + MUST_SUCCEED(strlen(max_s) <= INT_STRLEN(type)); \ + sprintf(min_s, "%"PRIdMAX, (intmax_t) (minimum)); \ + MUST_SUCCEED(strlen(min_s) <= INT_STRLEN(type)); int -main (void) +main (void) { + char max_s[128]; + char min_s[128]; + TEST_TYPE(char, CHAR_MIN, CHAR_MAX, (CHAR_MIN < 0)); TEST_TYPE(signed char, SCHAR_MIN, SCHAR_MAX, 1);