#!/bin/bash set -e # Add godep workspace to GOPATH. We do it manually instead of using # 'godep go test' or 'godep restore' so godep doesn't need to be installed. GOPATH="$PWD/Godeps/_workspace:$GOPATH" # Install packages before testing. Not doing this would cause # 'go test' to recompile all package dependencies before testing each package. go install ./... # Run test coverage on each subdirectories and merge the coverage profile. echo "mode: count" > profile.cov # Standard go tooling behavior is to ignore dirs with leading underscors for dir in $(find . -maxdepth 10 -not -path './.git*' -not -path '*/_*' -type d); do if ls $dir/*.go &> /dev/null; then # echo $dir if [[ $dir != "./tests/vm" && $dir != "." ]] then go test -covermode=count -coverprofile=$dir/profile.tmp $dir fi if [ -f $dir/profile.tmp ] then cat $dir/profile.tmp | tail -n +2 >> profile.cov rm $dir/profile.tmp fi fi done mg src='/~lantw44/cgit-data/cgit.png' alt='cgit logo'/> index : gsoc2013-evolution
Google Summer of Code 2013 - GNOME - Archive Integration workspace
aboutsummaryrefslogtreecommitdiffstats
path: root/shell
ModeNameSize
-rw-r--r--.cvsignore131logstatsplainblame
-rw-r--r--ChangeLog38436logstatsplainblame
-rw-r--r--Evolution-Shell.idl445logstatsplainblame
-rw-r--r--Evolution-ShellComponent.idl812logstatsplainblame
-rw-r--r--Evolution-Storage.idl990logstatsplainblame
-rw-r--r--Evolution.idl359logstatsplainblame
-rw-r--r--Makefile.am2436logstatsplainblame
-rw-r--r--e-component-registry.c7622logstatsplainblame
-rw-r--r--e-component-registry.h2519logstatsplainblame
-rw-r--r--e-corba-storage-registry.c6764logstatsplainblame
-rw-r--r--e-corba-storage-registry.h2627logstatsplainblame
-rw-r--r--e-corba-storage.c8835logstatsplainblame
-rw-r--r--e-corba-storage.h2437logstatsplainblame
-rw-r--r--e-folder-type-registry.c8569logstatsplainblame
-rw-r--r--e-folder-type-registry.h3260logstatsplainblame
-rw-r--r--e-folder.c6329logstatsplainblame
-rw-r--r--e-folder.h2864logstatsplainblame
-rw-r--r--e-init.c633logstatsplainblame
-rw-r--r--e-init.h112logstatsplainblame
-rw-r--r--e-local-folder.c4968logstatsplainblame
-rw-r--r--e-local-folder.h2022logstatsplainblame
-rw-r--r--e-local-storage.c7402logstatsplainblame
-rw-r--r--e-local-storage.h2119logstatsplainblame
-rw-r--r--e-setup.c3175logstatsplainblame
-rw-r--r--e-setup.h1025logstatsplainblame
-rw-r--r--e-shell-constants.h1182logstatsplainblame
-rw-r--r--e-shell-folder-title-bar.c9788logstatsplainblame
-rw-r--r--e-shell-folder-title-bar.h2716logstatsplainblame
-rw-r--r--e-shell-utils.c2418logstatsplainblame
-rw-r--r--e-shell-utils.h1031logstatsplainblame
-rw-r--r--e-shell-view-menu.c11265logstatsplainblame
-rw-r--r--e-shell-view-menu.h1106logstatsplainblame
-rw-r--r--e-shell-view.c25006logstatsplainblame
-rw-r--r--e-shell-view.h3569logstatsplainblame
-rw-r--r--e-shell.c12621logstatsplainblame
-rw-r--r--e-shell.h2601logstatsplainblame
-rw-r--r--e-shortcut.c11696logstatsplainblame
-rw-r--r--e-shortcut.h3853logstatsplainblame
-rw-r--r--e-shortcuts-view.c13856logstatsplainblame
-rw-r--r--e-shortcuts-view.h2357logstatsplainblame
-rw-r--r--e-shortcuts.c17000logstatsplainblame
-rw-r--r--e-shortcuts.h4044logstatsplainblame
-rw-r--r--e-storage-set-view.c22647logstatsplainblame
-rw-r--r--e-storage-set-view.h2520logstatsplainblame
-rw-r--r--e-storage-set.c10427logstatsplainblame
-rw-r--r--e-storage-set.h3332logstatsplainblame
-rw-r--r--e-storage.c8925logstatsplainblame
-rw-r--r--e-storage.h2869logstatsplainblame
-rw-r--r--evolution-shell-component.c10529logstatsplainblame
-rw-r--r--evolution-shell-component.h3622logstatsplainblame
-rw-r--r--evolution-storage.c11102logstatsplainblame
-rw-r--r--evolution-storage.h3454logstatsplainblame
d---------idl38logstatsplain
-rw-r--r--main.c5261logstatsplainblame