# HG changeset patch # User Simon Howkins # Date 1264525099 0 # Node ID 0e553fdaa2185c7dd1a7a0d40cb927f2be56b379 # Parent 9d6a5309852c742712cb702f6cf14501181e7e69 Added framework for specifying a "sources.csv" for test repos (separate from both the FBF and the sources repos). diff -r 9d6a5309852c -r 0e553fdaa218 common/build.xml --- a/common/build.xml Tue Jan 26 15:39:24 2010 +0000 +++ b/common/build.xml Tue Jan 26 16:58:19 2010 +0000 @@ -172,11 +172,16 @@ + + ant: antProperties() - data: csv(${sf.spec.sourcesync.sourcespecdir}/${sf.spec.sourcesync.sourcespecfile}, {separator:','}) + data: [ + csv(${sf.test.csv.file}, {separator:','}) + csv(${sf.spec.sourcesync.sourcespecdir}/${sf.spec.sourcesync.sourcespecfile}, {separator:','}) + ] diff -r 9d6a5309852c -r 0e553fdaa218 common/templates/source-spec.ant.xml.ftl --- a/common/templates/source-spec.ant.xml.ftl Tue Jan 26 15:39:24 2010 +0000 +++ b/common/templates/source-spec.ant.xml.ftl Tue Jan 26 16:58:19 2010 +0000 @@ -23,7 +23,8 @@ -<#list data as pkg_detail> +<#list data as csv_file> + <#list csv_file as pkg_detail> @@ -136,6 +137,7 @@ <#assign bom_list = "${bom_list}" + "\r\n "/> <#assign change_list = "${change_list}" + "\r\n "/> <#assign count = count + 1 /> +