~ubuntu-branches/ubuntu/maverick/newsbeuter/maverick

« back to all changes in this revision

Viewing changes to test/lcov-run-all.sh

  • Committer: Bazaar Package Importer
  • Author(s): Nico Golde
  • Date: 2009-04-21 14:06:18 UTC
  • mfrom: (4.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090421140618-osnjk19bgkebyg9h
Tags: 2.0-1
* New upstream release.
  - Remove dependeny on mrss and nxml and add libxml2, newsbeuter
    now comes with its own parser.
  - Remove debian/patches and quilt dependency.
* Bump to policy 3.8.1, no changes needed.
* debian/copyright: adjust years.
* Remove dh_clean -k call as it is deprecated -> dh_prep.
* Change newsbeuter homepage, it now has an official one.
* Fix watch file url, new upstream code location.
* Add bookmark-scuttle.sh to installed contrib files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
APPBASE_INFO=appbase.info
 
4
APPTEST_INFO=apptest.info
 
5
APPTOTAL_INFO=apptotal.info
 
6
 
 
7
make distclean
 
8
rm -rf $APPBASE_INFO $APPTEST_INFO html
 
9
make -j 2 -f Makefile.prof all test test-rss
 
10
lcov -c -i -b . -d . -o $APPBASE_INFO
 
11
export OFFLINE=1
 
12
( cd test
 
13
./test
 
14
./test-rss
 
15
./run-uitests-headless.sh )
 
16
lcov -c -b . -d . -o $APPTEST_INFO
 
17
lcov -b . -d . -a $APPBASE_INFO -a $APPTEST_INFO -o $APPTOTAL_INFO
 
18
rm -rf html
 
19
genhtml -o html $APPTOTAL_INFO