You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
804 B
22 lines
804 B
#!/bin/bash |
|
|
|
# Copyright (c) 2009 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. |
|
|
|
set -ex |
|
|
|
scons debug=1 -c |
|
scons debug=1 |
|
lcov -d . --zerocounters |
|
./unittests |
|
lcov --base-directory . --directory . --capture --output-file app.info |
|
|
|
# some versions of genhtml support the --no-function-coverage argument, |
|
# which we want. The problem w/ function coverage is that every template |
|
# instantiation of a method counts as a different method, so if we |
|
# instantiate a method twice, once for testing and once for prod, the method |
|
# is tested, but it shows only 50% function coverage b/c it thinks we didn't |
|
# test the prod version. |
|
|
|
genhtml --no-function-coverage -o html ./app.info || genhtml -o html ./app.info
|
|
|