Home | History | Annotate | Download | only in futility
      1 /*
      2  * Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
      3  * Use of this source code is governed by a BSD-style license that can be
      4  * found in the LICENSE file.
      5  */
      6 #include <stdio.h>
      7 #include "gbb_header.h"
      8 #include "test_common.h"
      9 
     10 int main(int argc, char *argv[])
     11 {
     12 	TEST_EQ(sizeof(GoogleBinaryBlockHeader),
     13 		GBB_HEADER_SIZE,
     14 		"sizeof(GoogleBinaryBlockHeader)");
     15 
     16 	TEST_EQ(0, 0, "Not Really A");
     17 
     18 	return !gTestSuccess;
     19 }
     20