mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-06 15:01:35 +00:00
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
31 lines
477 B
C
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;
|
|
}
|