Check-in [44fdeb3c7e]
Overview
Comment:Updated to cleanup logs that are empty
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 44fdeb3c7ef75160bdfd18351f03e50c12b0ffca
User & Date: rkeene on 2010-09-26 04:46:44
Other Links: manifest | tags
Context
2010-09-26
04:46
Updated to clean up all log files from succesful tests check-in: 7720fda215 user: rkeene tags: trunk
04:46
Updated to cleanup logs that are empty check-in: 44fdeb3c7e user: rkeene tags: trunk
04:46
Added StaticTk builds

Updated to move failed builds into failed directory check-in: fdb515dc70 user: rkeene tags: trunk

Changes

Modified build/test/test from [541777ce91] to [4ad4341f53].

237
238
239
240
241
242
243




244
245
246
247
248
249
250
			if [ "$?" != "0" ]; then
				echo "Script failed: ${testscp_tag} on ${version}/${kit}" >&2

				failed="${failed} ${version}/${kit}-test-${testscp_tag}"

				continue
			fi




		done
	done
done

if [ -n "${failed}" ]; then
	echo "Failed: ${failed}"
fi







>
>
>
>







237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
			if [ "$?" != "0" ]; then
				echo "Script failed: ${testscp_tag} on ${version}/${kit}" >&2

				failed="${failed} ${version}/${kit}-test-${testscp_tag}"

				continue
			fi

			if [ ! -s "${scplogfile}" ]; then
				rm -f "${scplogfile}"
			fi
		done
	done
done

if [ -n "${failed}" ]; then
	echo "Failed: ${failed}"
fi