Files
OpenCellular/core/host/main.c
Vic Yang aaac3935d2 Make target for test coverage report generation
By 'make coverage', lcov is used to generate test coverage report in
HTML format stored in coverage_rpt folder.

BUG=chrome-os-partner:19235
TEST=Generate a report.
BRANCH=None

Change-Id: I44142eaaeb897cf09179764781120370920144cd
Signed-off-by: Vic Yang <victoryang@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/58203
2013-06-16 20:14:01 -07:00

31 lines
477 B
C

/* Copyright (c) 2013 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.
*/
/* Entry point of unit test executable */
#include "flash.h"
#include "hooks.h"
#include "task.h"
#include "test_util.h"
#include "timer.h"
#include "uart.h"
int main(void)
{
register_test_end_hook();
flash_pre_init();
timer_init();
hook_init();
uart_init();
task_start();
return 0;
}