30 lines
725 B
C
30 lines
725 B
C
/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*
|
|
* Tests for firmware 2common.c
|
|
*/
|
|
|
|
#include "2sysincludes.h"
|
|
#include "test_common.h"
|
|
#include "vb2_common.h"
|
|
|
|
/*
|
|
* Test struct packing for vboot_struct.h structs which are passed between
|
|
* firmware and OS, or passed between different phases of firmware.
|
|
*/
|
|
static void test_struct_packing(void)
|
|
{
|
|
/* Test vboot2 versions of vboot1 structs */
|
|
TEST_EQ(EXPECTED_VB2_FW_PREAMBLE_SIZE,
|
|
sizeof(struct vb2_fw_preamble),
|
|
"sizeof(vb2_fw_preamble)");
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
test_struct_packing();
|
|
|
|
return gTestSuccess ? 0 : 255;
|
|
}
|