X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-byte-order.c;h=ab396278ed15102c7418d4b29445997fc51a2efc;hb=b5e7e61a990fdb5c178e0ba80cb604c8eb48d27d;hp=187075457eb9901edf740f385f160a1e6444d7ad;hpb=10a24935c9d382e4d85b05d9616843f3d3bb4983;p=sliver-openvswitch.git diff --git a/tests/test-byte-order.c b/tests/test-byte-order.c index 187075457..ab396278e 100644 --- a/tests/test-byte-order.c +++ b/tests/test-byte-order.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010 Nicira Networks. + * Copyright (c) 2010, 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. @@ -22,6 +22,7 @@ int main(void) { +#ifndef __CHECKER__ /* I picked some random numbers. */ const uint16_t s = 0xc9bd; const uint32_t l = 0xffe56ae8; @@ -44,6 +45,9 @@ main(void) assert(ntohll(htonll(ll)) == ll); assert(CONSTANT_HTONLL(ntohll(ll)) == ll); assert(ntohll(CONSTANT_HTONLL(ll))); +#else /* __CHECKER__ */ +/* Making sparse happy with this code makes it unreadable, so don't bother. */ +#endif return 0; }