xref: /aosp_15_r20/external/vboot_reference/tests/futility/test_not_really.c (revision 8617a60d3594060b7ecbd21bc622a7c14f3cf2bc)
1 /* Copyright 2014 The ChromiumOS Authors
2  * Use of this source code is governed by a BSD-style license that can be
3  * found in the LICENSE file.
4  */
5 
6 #include <stdio.h>
7 
8 #include "2struct.h"
9 #include "common/tests.h"
10 
main(int argc,char * argv[])11 int main(int argc, char *argv[])
12 {
13 	TEST_EQ(sizeof(struct vb2_gbb_header),
14 		EXPECTED_VB2_GBB_HEADER_SIZE,
15 		"sizeof(struct vb2_gbb_header)");
16 
17 	TEST_EQ(0, 0, "Not Really A");
18 
19 	return !gTestSuccess;
20 }
21