revalidator: Fix ukey stats cache updating.
[sliver-openvswitch.git] / tests / test-byte-order.c
index 1870754..4af765e 100644 (file)
@@ -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.
 #include "byte-order.h"
 #include <assert.h>
 #include <inttypes.h>
+#include "ovstest.h"
 
-int
-main(void)
+static void
+test_byte_order_main(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
 {
+#ifndef __CHECKER__
     /* I picked some random numbers. */
     const uint16_t s = 0xc9bd;
     const uint32_t l = 0xffe56ae8;
@@ -44,6 +46,9 @@ main(void)
     assert(ntohll(htonll(ll)) == ll);
     assert(CONSTANT_HTONLL(ntohll(ll)) == ll);
     assert(ntohll(CONSTANT_HTONLL(ll)));
-
-    return 0;
+#else  /* __CHECKER__ */
+/* Making sparse happy with this code makes it unreadable, so don't bother. */
+#endif
 }
+
+OVSTEST_REGISTER("test-byte-order", test_byte_order_main);