• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

allura


Commit MetaInfo

修訂65b0c9589925b3f1535fc926bb45031aab34d6c3 (tree)
時間2012-06-14 04:13:59
作者Evgeniy Filatov <evgeniyfilatov@yand...>
CommiterYaroslav Luzin

Log Message

ticket:67 excluded tests from clonedigger run

Change Summary

差異

--- a/run_clonedigger
+++ b/run_clonedigger
@@ -25,10 +25,17 @@ if [ "$TEST_MODULES" == "" ]; then
2525 "
2626 fi
2727
28+if [ "$INCLUDE_TESTS" ]; then
29+ ignore=""
30+else
31+ ignore="tests"
32+fi
33+
2834 mkdir -p report.clonedigger
35+
2936 for module in $TEST_MODULES; do
3037 (
3138 echo "Running clonedigger in module $module"
32- clonedigger --output="report.clonedigger/$module-$(date --rfc-3339=seconds).html" --language=python --ignore-dir="$module/tests" $module || exit
39+ clonedigger --output="report.clonedigger/$module-$(date --iso-8601=seconds).html" --language=python --ignore-dir="$ignore" $module || exit
3340 ) || exit
3441 done