forked from nemomobile-graveyard/meegotouch-systemui
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Leaving out disabled unit tests when they are disabled.
- Loading branch information
László Pere
committed
Jun 25, 2010
1 parent
d573565
commit 5fe073c
Showing
3 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#! /bin/bash | ||
|
||
# | ||
# If a unit test fails we the calculation of the coverage will fail. This script | ||
# will print the names of those unit tests that are not set to be deleted and | ||
# disabled. | ||
# | ||
for f in ut_*; do | ||
if [ $f == "ut_template" ]; then | ||
continue | ||
fi | ||
|
||
if [ ! -e $f/disabled -a ! -e $f/deleted ]; then | ||
echo $f | ||
fi | ||
done |
Empty file.