test_not_really.c 441 B

1234567891011121314151617181920
  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. int main(int argc, char *argv[])
  10. {
  11. TEST_EQ(sizeof(GoogleBinaryBlockHeader),
  12. GBB_HEADER_SIZE,
  13. "sizeof(GoogleBinaryBlockHeader)");
  14. TEST_EQ(0, 0, "Not Really A");
  15. return !gTestSuccess;
  16. }