tednaleid / shared zshrc

A set of shared zshrc files that can be used on multiple boxes.

Clone this repository (size: 49.3 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/tednaleid/shared-zshrc/
commit 41: 595eceda6caa
parent 40: 8c834fb62bf3
branch: default
updated for new grails 1.2 way of test naming
Ted Naleid
3 months ago

Changed (Δ17 bytes):

raw changeset »

zshrc_general (1 lines added, 1 lines removed)

Up to file-list zshrc_general:

@@ -269,7 +269,7 @@ function grailsTestAppIntegrationDebugFa
269
269
function grailsFailedTests() {
270
270
	FAILED_TESTS=''
271
271
	for F in `grep -lE "FAILED|Caused\ an\ ERROR" $GRAILS_TEST_LOG_DIRECTORY/plain/*.txt`; do
272
		FAILED_TESTS="$FAILED_TESTS `echo $F | sed -E 's/.*TEST-(.*)Tests.txt/\1/g'`"
272
		FAILED_TESTS="$FAILED_TESTS `echo $F | sed -E 's/.*TEST-((integration-)*)(.*)Tests.txt/\3/g'`"
273
273
	done;
274
274
	echo "failed tests: $FAILED_TESTS"
275
275
	grailsTest $1 $2 $FAILED_TESTS