This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix inconsistent /empty, /module document /module feature LibAddMacro for generate_readme warnings seem to work, as corrected in #12 add missing error symbol in success plugin
- Loading branch information
Markus Raab
committed
Jul 11, 2014
1 parent
57159f6
commit aa46d4b
Showing
9 changed files
with
113 additions
and
57 deletions.
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
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
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
This file was deleted.
Oops, something went wrong.
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,36 @@ | ||
@INCLUDE_COMMON@ | ||
|
||
echo | ||
echo ELEKTRA KDB INTERNAL TEST SUITE | ||
echo | ||
|
||
check_version | ||
|
||
FILE=`mktemp` | ||
for PLUGIN in $PLUGINS | ||
do | ||
case "$PLUGIN" in | ||
"template") | ||
continue | ||
;; | ||
"doc") | ||
continue | ||
;; | ||
"tracer") | ||
continue | ||
;; | ||
"timeofday") | ||
continue | ||
;; | ||
esac | ||
|
||
> $FILE | ||
$KDB check $PLUGIN 1> $FILE 2> $FILE | ||
succeed_if "check of plugin $PLUGIN failed" | ||
|
||
test ! -s $FILE | ||
succeed_if "check of plugin $PLUGIN produced: \"`cat $FILE`\"" | ||
done | ||
rm $FILE | ||
|
||
end_script basic commands |