merge
authorBrendan Donegan brendand@symbian.org
Fri, 25 Sep 2009 10:52:44 +0100
changeset 517 3e304691a9b3
parent 516 de0a977c7675 (current diff)
parent 514 49ec6f03555d (diff)
child 518 50d29d0828e9
merge
--- a/common/build.postbuild.xml	Fri Sep 25 10:51:44 2009 +0100
+++ b/common/build.postbuild.xml	Fri Sep 25 10:52:44 2009 +0100
@@ -276,6 +276,7 @@
           <runtarget target="sf-run-analysis-raptor"/>
           <runtarget target="sf-run-analysis-yarp"/>
           <runtarget target="sf-run-analysis-whatlog-summary"/>
+          <runtarget target="sf-run-analysis-missing-files"/>
         </parallel>
         <if>
           <istrue value="${sf.spec.publish.enable}"/>
@@ -487,42 +488,34 @@
         <property name="sf.releasenotes.wiki.txt" value="${build.log.dir}/releaseNotes.wiki.txt"/>
         <delete file="${sf.releasenotes.wiki.txt}"/>
         <!-- FCL usage -->
-        <!-- TODO -->
+        <exec executable="perl" dir="${build.drive}/utilities/releaseAutomation/" output="${build.log.dir}/fcls4releasenotes.log">
+            <arg value="${build.drive}/utilities/releaseAutomation/fcls4releasenotes.pl"/>
+            <arg value="--pdkname1=${sf.previous.pdk.tag}"/>
+            <arg value="--pdkloc2=${build.log.dir}"/>
+        </exec>
         <!-- Mercurial comparison -->
-        <echo file="${sf.releasenotes.wiki.txt}" append="true">== Mercurial Comparison ==
-
-</echo>
+        <echo file="${sf.releasenotes.wiki.txt}" append="true">== Mercurial Comparison ==${line.separator}${line.separator}</echo>
         <if>
             <isset property="sf.previous.pdk.tag"/>
             <then>
-                <echo file="${sf.releasenotes.wiki.txt}" append="true">The Mercurial changes from Nokia were delivered as a bulk update based on '''XXXXXXXXXXXXXXXXXXXXXX'''.
-
-List of the Mercurial changes (files added/removed/modified) between ${sf.previous.pdk.tag} and PDK '''XXXXX''' - [[Media:XXXX.txt]].
-
-A short study of the results concentrating on the added and removed files has identified these significant package changes:
-
-</echo>
+                <echo file="${sf.releasenotes.wiki.txt}" append="true">The Mercurial changes from Nokia were delivered as a bulk update based on '''XXXXXXXXXXXXXXXXXXXXXX'''.${line.separator}${line.separator}List of the Mercurial changes (files added/removed/modified) between ${sf.previous.pdk.tag} and PDK '''XXXXX''' - [[Media:XXXX.txt]].${line.separator}${line.separator}A short study of the results concentrating on the added and removed files has identified these significant package changes:${line.separator}${line.separator}</echo>
                 <if>
                     <istrue value="${sf.spec.sourcesync.archive}"/>
                     <then>
-                        <echo file="${sf.releasenotes.wiki.txt}" append="true">'''Information cannot be derived as source was synced with archive option'''"
-
-</echo>
+                        <echo file="${sf.releasenotes.wiki.txt}" append="true">'''Information cannot be derived as source was synced with archive option'''"${line.separator}${line.separator}</echo>
                     </then>
                     <else>
                         <exec executable="perl" dir="${build.drive}/" output="${sf.releasenotes.wiki.txt}" append="true">
                             <arg value="${build.drive}/utilities/releaseAutomation/mercurialComparison.pl"/>
                             <arg value="${build.log.dir}/BOM/build-info.xml"/>
-			    <arg value="${sf.previous.pdk.tag}"/>
+                            <arg value="${sf.previous.pdk.tag}"/>
                             <arg value="${build.log.dir}/mercurialComparison.tsv"/>
                         </exec>
                     </else>
                 </if>
             </then>
             <else>
-                <echo file="${sf.releasenotes.wiki.txt}" append="true">'''Information cannot be provided as the tag for the previous PDK was not provided to the build'''"
-
-</echo>
+                <echo file="${sf.releasenotes.wiki.txt}" append="true">'''Information cannot be provided as the tag for the previous PDK was not provided to the build'''"${line.separator}${line.separator}</echo>
             </else>
         </if>
         
@@ -558,4 +551,86 @@
         </copy>
     </target>
 
+    <!-- TODO: Make this work for package builds once we have sysmodel story worked out -->
+    <target name="sf-run-analysis-missing-files" if="sf.spec.splitbuild">
+    <!-- splitbuild is only set for Platform builds -->
+       <if><istrue value="${sf.spec.splitbuild}"/>
+       <then>
+            <if><istrue value="${sf.spec.os.skipbuild}" />
+                <then><echo message="Skipping OS file check"/></then>
+                <else><runtarget target="sf-check-missing-os-files"/></else>
+            </if>
+
+            <if><istrue value="${sf.spec.s60.skipbuild}" />
+                <then><echo message="Skipping S60 file check"/></then>
+                <else><runtarget target="sf-check-missing-s60-files"/></else>
+            </if>
+       </then>
+       <else>
+            <runtarget target="sf-check-missing-os-files"/>
+       </else>
+    </if>
+    </target>
+    
+    <target name="sf-check-missing-os-files">
+        <hlm:argSet id="sbs.check.tools.var">
+                <hlm:arg name="config" value="${sf.spec.sbs.tools.config}" />
+                <hlm:arg name="run-check" value="true" />
+        </hlm:argSet>
+     
+        <hlm:argSet id="sbs.check.main.var">
+                <hlm:arg name="config" value="${sf.spec.sbs.config}" />
+                <hlm:arg name="run-check" value="true" />
+        </hlm:argSet>     
+        <antcall target="compile-main" inheritAll="false" inheritRefs="true">
+            <param name="build.system" value="${sf.spec.build.system}" />
+            <param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" />
+            <param name="sf.spec.sysdef.version" value ="${sf.spec.os.sysdef.version}"/>
+            <param name="build.id" value ="sbs_check"/>
+            <reference refid="sbs.check.tools.var" torefid="sbs.var" />
+            <reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" />
+            <reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" />
+        </antcall> 
+        <antcall target="compile-main" inheritAll="false" inheritRefs="true">
+            <param name="build.system" value="${sf.spec.build.system}" />
+            <param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" />
+            <param name="sf.spec.sysdef.version" value ="${sf.spec.os.sysdef.version}"/>
+            <param name="build.id" value ="sbs_check"/>
+            <reference refid="sbs.check.main.var" torefid="sbs.var" />
+            <reference refid="sbs.fullbuild.options" torefid="sbs.make.options" />
+            <reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" />
+        </antcall> 
+    </target>
+
+    <target name="sf-check-missing-s60-files">
+    
+        <hlm:argSet id="sbs.check.tools.var">
+                <hlm:arg name="config" value="${sf.spec.sbs.tools.config}" />
+                <hlm:arg name="run-check" value="true" />
+        </hlm:argSet>
+     
+        <hlm:argSet id="sbs.check.main.var">
+                <hlm:arg name="config" value="${sf.spec.sbs.config}" />
+                <hlm:arg name="run-check" value="true" />
+        </hlm:argSet>     
+        <antcall target="compile-main" inheritAll="false" inheritRefs="true">
+            <param name="build.system" value="${sf.spec.build.system}" />
+            <param name="sysdef.configurations.list" value="${sf.spec.s60.sysdef.clean.configurations.list}" />
+            <param name="sf.spec.sysdef.version" value ="${sf.spec.s60.sysdef.version}"/>
+            <param name="build.id" value ="sbs_check"/>
+            <reference refid="sbs.check.tools.var" torefid="sbs.var" />
+            <reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" />
+            <reference refid="sf.spec.s60.system.definition.files" torefid="system.definition.files" />
+        </antcall> 
+        <antcall target="compile-main" inheritAll="false" inheritRefs="true">
+            <param name="build.system" value="${sf.spec.build.system}" />
+            <param name="sysdef.configurations.list" value="${sf.spec.s60.sysdef.clean.configurations.list}" />
+            <param name="sf.spec.sysdef.version" value ="${sf.spec.os.sysdef.version}"/>
+            <param name="build.id" value ="sbs_check"/>
+            <reference refid="sbs.check.main.var" torefid="sbs.var" />
+            <reference refid="sbs.fullbuild.options" torefid="sbs.make.options" />
+            <reference refid="sf.spec.s60.system.definition.files" torefid="system.definition.files" />
+        </antcall>
+    </target>
+
 </project>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/50_Symbian_AudioConvertUtility.pkg	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,50 @@
+;
+; Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+; All rights reserved.
+; This component and the accompanying materials are made available
+; under the terms of the License "Symbian Foundation License v1.0"
+; which accompanies this distribution, and is available
+; at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+;
+; Initial Contributors:
+; Nokia Corporation - initial contribution.
+;
+; Contributors:
+;
+; Description:      
+;
+
+; Languages - 
+&EN
+
+; Installation header
+; UID is the app's UID
+#{"T_MdaAudioConvertUtility"},(0x20000F74),1,0,0
+
+;%{"Vendor-EN"}
+;:"Symbian"
+
+; Localised Vendor name
+%{"Nokia"}
+
+; Unique Vendor name
+:"Nokia"
+
+;Supports S60 3rd Edition
+[0x101F7961], 3, *, *, {"Series60ProductID"}
+
+"\Epoc32\release\armv5\urel\T_MdaAudioConvertUtility.exe"-"!:\sys\bin\T_MdaAudioConvertUtility.exe"
+"\Epoc32\data\z\multimedia\tacu.bat"-"!:\multimedia\tacu.bat"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-CNVRT-PublicAPI.script"-"!:\multimedia\MM-MMF-ACLNT-CNVRT-PublicAPI.script"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-CNVRT-PublicAPI.tcs"-"!:\multimedia\MM-MMF-ACLNT-CNVRT-PublicAPI.tcs"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-CNVRT-PublicAPI.ini"-"!:\multimedia\MM-MMF-ACLNT-CNVRT-PublicAPI.ini"
+"\Epoc32\data\z\multimedia\t_mdaaudioconvertutility\note.wav"-"!:\multimedia\t_mdaaudioconvertutility\note.wav"
+"\Epoc32\data\z\multimedia\t_mdaaudioconvertutility\corrupted.wav"-"!:\multimedia\t_mdaaudioconvertutility\corrupted.wav"
+"\Epoc32\data\z\multimedia\t_mdaaudioconvertutility\note.raw"-"!:\multimedia\t_mdaaudioconvertutility\note.raw"
+"\Epoc32\release\armv5\urel\z\multimedia\t_mdaaudioconvertutility\explode.wav"-"!:\multimedia\t_mdaaudioconvertutility\explode.wav"
+
+; Required files
+; None
+
+; Component .sis files
+; None
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/50_Symbian_AudioInputStream.pkg	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,47 @@
+;
+; Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+; All rights reserved.
+; This component and the accompanying materials are made available
+; under the terms of the License "Symbian Foundation License v1.0"
+; which accompanies this distribution, and is available
+; at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+;
+; Initial Contributors:
+; Nokia Corporation - initial contribution.
+;
+; Contributors:
+;
+; Description:      
+;
+
+; Languages - 
+&EN
+
+; Installation header
+; UID is the app's UID
+#{"T_MdaAudioInputStream"},(0x20000F75),1,0,0
+
+;%{"Vendor-EN"}
+;:"Symbian"
+
+; Localised Vendor name
+%{"Nokia"}
+
+; Unique Vendor name
+:"Nokia"
+
+;Supports S60 3rd Edition
+[0x101F7961], 3, *, *, {"Series60ProductID"}
+
+"\Epoc32\release\armv5\urel\T_MdaAudioInputStream.exe"-"!:\sys\bin\T_MdaAudioInputStream.exe"
+"\Epoc32\data\z\multimedia\tais.bat"-"!:\multimedia\tais.bat"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-INPT-PublicAPI.script"-"!:\multimedia\MM-MMF-ACLNT-INPT-PublicAPI.script"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-INPT-PublicAPI.tcs"-"!:\multimedia\MM-MMF-ACLNT-INPT-PublicAPI.tcs"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-INPT-PublicAPI.ini"-"!:\multimedia\MM-MMF-ACLNT-INPT-PublicAPI.ini"
+
+
+; Required files
+; None
+
+; Component .sis files
+; None
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/50_Symbian_AudioOutputStream.pkg	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,48 @@
+;
+; Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+; All rights reserved.
+; This component and the accompanying materials are made available
+; under the terms of the License "Symbian Foundation License v1.0"
+; which accompanies this distribution, and is available
+; at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+;
+; Initial Contributors:
+; Nokia Corporation - initial contribution.
+;
+; Contributors:
+;
+; Description:      
+;
+
+; Languages - 
+&EN
+
+; Installation header
+; UID is the app's UID
+#{"T_MdaAudioOutputStream"},(0x20000F76),1,0,0
+
+;%{"Vendor-EN"}
+;:"Symbian"
+
+; Localised Vendor name
+%{"Nokia"}
+
+; Unique Vendor name
+:"Nokia"
+
+;Supports S60 3rd Edition
+[0x101F7961], 3, *, *, {"Series60ProductID"}
+
+"\Epoc32\release\armv5\urel\T_MdaAudioOutputStream.exe"-"!:\sys\bin\T_MdaAudioOutputStream.exe"
+"\Epoc32\data\z\multimedia\taos.bat"-"!:\multimedia\taos.bat"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-OUTPT-PublicAPI.script"-"!:\multimedia\MM-MMF-ACLNT-OUTPT-PublicAPI.script"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-OUTPT-PublicAPI.tcs"-"!:\multimedia\MM-MMF-ACLNT-OUTPT-PublicAPI.tcs"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-OUTPT-PublicAPI.ini"-"!:\multimedia\MM-MMF-ACLNT-OUTPT-PublicAPI.ini"
+"\Epoc32\data\z\multimedia\t_mdaaudiooutputstream\MM-MMF-ACLNT-OUTPT-PublicAPI.raw"-"!:\multimedia\t_mdaaudiooutputstream\MM-MMF-ACLNT-OUTPT-PublicAPI.raw"
+
+
+; Required files
+; None
+
+; Component .sis files
+; None
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/50_Symbian_AudioPlayerUtility.pkg	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,52 @@
+;
+; Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+; All rights reserved.
+; This component and the accompanying materials are made available
+; under the terms of the License "Symbian Foundation License v1.0"
+; which accompanies this distribution, and is available
+; at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+;
+; Initial Contributors:
+; Nokia Corporation - initial contribution.
+;
+; Contributors:
+;
+; Description:      
+;
+
+; Languages -
+&EN
+
+; Installation header
+; UID is the app's UID
+#{"T_MdaAudioPlayerUtility"},(0x20000F77),1,0,0
+
+;%{"Vendor-EN"}
+;:"Symbian"
+
+; Localised Vendor name
+%{"Nokia"}
+
+; Unique Vendor name
+:"Nokia"
+
+;Supports S60 3rd Edition
+[0x101F7961], 3, *, *, {"Series60ProductID"}
+
+"\Epoc32\release\armv5\urel\T_MdaAudioPlayerUtility.exe"-"!:\sys\bin\T_MdaAudioPlayerUtility.exe"
+"\Epoc32\data\z\multimedia\tapu.bat"-"!:\multimedia\tapu.bat"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-PLYR-PublicAPI.script"-"!:\multimedia\MM-MMF-ACLNT-PLYR-PublicAPI.script"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-PLYR-PublicAPI.tcs"-"!:\multimedia\MM-MMF-ACLNT-PLYR-PublicAPI.tcs"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-PLYR-PublicAPI.ini"-"!:\multimedia\MM-MMF-ACLNT-PLYR-PublicAPI.ini"
+"\Epoc32\data\z\multimedia\t_mdaaudioplayerutility\test.wav"-"!:\multimedia\t_mdaaudioplayerutility\test.wav"
+"\Epoc32\data\z\multimedia\t_mdaaudioplayerutility\test.bad"-"!:\multimedia\t_mdaaudioplayerutility\test.bad"
+"\Epoc32\data\z\multimedia\t_mdaaudioplayerutility\test_err.wav"-"!:\multimedia\t_mdaaudioplayerutility\test_err.wav"
+"\Epoc32\data\z\multimedia\t_mdaaudioplayerutility\empty.wav"-"!:\multimedia\t_mdaaudioplayerutility\empty.wav"
+"\Epoc32\data\z\multimedia\t_mdaaudioplayerutility\answeringmachine.wav"-"!:\multimedia\t_mdaaudioplayerutility\answeringmachine.wav"
+"\Epoc32\data\z\multimedia\t_mdaaudioplayerutility\explode.au"-"!:\multimedia\t_mdaaudioplayerutility\explode.au"
+
+; Required files
+; None
+
+; Component .sis files
+; None
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/50_Symbian_AudioRecorderUtility.pkg	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,49 @@
+;
+; Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+; All rights reserved.
+; This component and the accompanying materials are made available
+; under the terms of the License "Symbian Foundation License v1.0"
+; which accompanies this distribution, and is available
+; at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+;
+; Initial Contributors:
+; Nokia Corporation - initial contribution.
+;
+; Contributors:
+;
+; Description:      
+;
+
+; Languages - 
+&EN
+
+; Installation header
+; UID is the app's UID
+#{"T_MdaAudioRecorderUtility"},(0x20000F78),1,0,0
+
+;%{"Vendor-EN"}
+;:"Symbian"
+
+; Localised Vendor name
+%{"Nokia"}
+
+; Unique Vendor name
+:"Nokia"
+
+;Supports S60 3rd Edition
+[0x101F7961], 3, *, *, {"Series60ProductID"}
+
+"\Epoc32\release\armv5\urel\T_MdaAudioRecorderUtility.exe"-"!:\sys\bin\T_MdaAudioRecorderUtility.exe"
+"\Epoc32\data\z\multimedia\taru.bat"-"!:\multimedia\taru.bat"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-RCRDR-PublicAPI.script"-"!:\multimedia\MM-MMF-ACLNT-RCRDR-PublicAPI.script"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-RCRDR-PublicAPI.tcs"-"!:\multimedia\MM-MMF-ACLNT-RCRDR-PublicAPI.tcs"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-RCRDR-PublicAPI.ini"-"!:\multimedia\MM-MMF-ACLNT-RCRDR-PublicAPI.ini"
+"\Epoc32\data\z\multimedia\T_MdaAudioRecorderUtility\pcm16stereo8khz.wav"-"!:\multimedia\T_MdaAudioRecorderUtility\pcm16stereo8khz.wav"
+"\Epoc32\data\z\multimedia\T_MdaAudioRecorderUtility\corrupted.wav"-"!:\multimedia\T_MdaAudioRecorderUtility\corrupted.wav"
+
+
+; Required files
+; None
+
+; Component .sis files
+; None
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/50_Symbian_Ecom.pkg	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,52 @@
+;
+; Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+; All rights reserved.
+; This component and the accompanying materials are made available
+; under the terms of the License "Symbian Foundation License v1.0"
+; which accompanies this distribution, and is available
+; at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+;
+; Initial Contributors:
+; Nokia Corporation - initial contribution.
+;
+; Contributors:
+;
+; Description:      
+;
+
+; Languages - 
+&EN
+
+; Installation header
+; UID is the app's UID
+#{"T_ECOM"},(0x2000371C),1,0,0
+
+;%{"Vendor-EN"}
+;:"Symbian"
+
+; Localised Vendor name
+%{"Nokia"}
+
+; Unique Vendor name
+:"Nokia"
+
+;Supports S60 3rd Edition
+[0x101F7961], 3, *, *, {"Series60ProductID"}
+
+"\epoc32\RELEASE\armv5\urel\T_ECOM.exe"-"!:\sys\bin\T_ECOM.exe"
+"\epoc32\data\z\syslibs\t_syslibs.ini"-"!:\syslibs\t_syslibs.ini"
+"\epoc32\data\z\ecom.bat"-"!:\ecom\ecom.bat"
+"\epoc32\data\z\ecom\SYSLIB-ECOM-PublicAPI.script"-"!:\ecom\SYSLIB-ECOM-PublicAPI.script"
+"\epoc32\data\z\ecom\SYSLIB-ECOM-PublicAPI.tcs"-"!:\ecom\SYSLIB-ECOM-PublicAPI.tcs"
+"\epoc32\data\z\ecom\SYSLIB-ECOM-PublicAPI.ini"-"!:\ecom\SYSLIB-ECOM-PublicAPI.ini"
+"\epoc32\RELEASE\armv5\urel\TPCopyFileUtility.exe"-"!:\sys\bin\TPCopyFileUtility.exe"
+"\epoc32\RELEASE\armv5\urel\TPDeleteFileUtility.exe"-"!:\sys\bin\TPDeleteFileUtility.exe"
+"\epoc32\RELEASE\armv5\urel\TestProduct_PlugIn.dll"-"!:\ecom\TestProduct_PlugIn.dll"
+"\epoc32\data\z\ecom\TestProduct_PlugIn.rsc"-"!:\ecom\TestProduct_PlugIn.rsc"
+
+
+; Required files
+; None
+
+; Component .sis files
+; None
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/50_Symbian_ImageDecoder.pkg	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,86 @@
+;
+; Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+; All rights reserved.
+; This component and the accompanying materials are made available
+; under the terms of the License "Symbian Foundation License v1.0"
+; which accompanies this distribution, and is available
+; at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+;
+; Initial Contributors:
+; Nokia Corporation - initial contribution.
+;
+; Contributors:
+;
+; Description:      
+;
+
+; Languages -
+&EN
+
+; Installation header
+; UID is the app's UID
+#{"T_ImageDecoder"},(0x20000F72),1,0,0
+
+;%{"Vendor-EN"}
+;:"Symbian"
+
+; Localised Vendor name
+%{"Nokia"}
+
+; Unique Vendor name
+:"Nokia"
+
+;Supports S60 3rd Edition
+[0x101F7961], 3, *, *, {"Series60ProductID"}
+
+"\Epoc32\release\armv5\urel\T_ImageDecoder.exe"-"!:\sys\bin\T_ImageDecoder.exe"
+"\Epoc32\data\z\multimedia\dec.bat"-"!:\multimedia\dec.bat"
+"\Epoc32\data\z\multimedia\MM-ICL-DECDE-PublicApi.script"-"!:\multimedia\MM-ICL-DECDE-PublicApi.script"
+"\Epoc32\data\z\multimedia\MM-ICL-DECDE-PublicApi.tcs"-"!:\multimedia\MM-ICL-DECDE-PublicApi.tcs"
+"\Epoc32\data\z\multimedia\MM-ICL-DECDE-PublicApi.ini"-"!:\multimedia\MM-ICL-DECDE-PublicApi.ini"
+"\Epoc32\data\z\multimedia\t_imagedecoder\24bit.apm"-"!:\multimedia\t_imagedecoder\24bit.apm"
+"\Epoc32\data\z\multimedia\t_imagedecoder\1bit.bmp"-"!:\multimedia\t_imagedecoder\1bit.bmp"
+"\Epoc32\data\z\multimedia\t_imagedecoder\4bit.bmp"-"!:\multimedia\t_imagedecoder\4bit.bmp"
+"\Epoc32\data\z\multimedia\t_imagedecoder\8bit.bmp"-"!:\multimedia\t_imagedecoder\8bit.bmp"
+"\Epoc32\data\z\multimedia\t_imagedecoder\24bit.bmp"-"!:\multimedia\t_imagedecoder\24bit.bmp"
+"\Epoc32\data\z\multimedia\t_imagedecoder\24bit.clp"-"!:\multimedia\t_imagedecoder\24bit.clp"
+"\Epoc32\data\z\multimedia\t_imagedecoder\1bit.gif"-"!:\multimedia\t_imagedecoder\1bit.gif"
+"\Epoc32\data\z\multimedia\t_imagedecoder\2bit.gif"-"!:\multimedia\t_imagedecoder\2bit.gif"
+"\Epoc32\data\z\multimedia\t_imagedecoder\4bit.gif"-"!:\multimedia\t_imagedecoder\4bit.gif"
+"\Epoc32\data\z\multimedia\t_imagedecoder\6bit.gif"-"!:\multimedia\t_imagedecoder\6bit.gif"
+"\Epoc32\data\z\multimedia\t_imagedecoder\8bit.gif"-"!:\multimedia\t_imagedecoder\8bit.gif"
+"\Epoc32\data\z\multimedia\t_imagedecoder\commented.gif"-"!:\multimedia\t_imagedecoder\commented.gif"
+"\Epoc32\data\z\multimedia\t_imagedecoder\4bit.ico"-"!:\multimedia\t_imagedecoder\4bit.ico"
+"\Epoc32\data\z\multimedia\t_imagedecoder\8bit.ico"-"!:\multimedia\t_imagedecoder\8bit.ico"
+"\Epoc32\data\z\multimedia\t_imagedecoder\8bit.jpg"-"!:\multimedia\t_imagedecoder\8bit.jpg"
+"\Epoc32\data\z\multimedia\t_imagedecoder\24bit.jpg"-"!:\multimedia\t_imagedecoder\24bit.jpg"
+"\Epoc32\data\z\multimedia\t_imagedecoder\thumbnail.jpg"-"!:\multimedia\t_imagedecoder\thumbnail.jpg"
+"\Epoc32\data\z\multimedia\t_imagedecoder\commented.jpg"-"!:\multimedia\t_imagedecoder\commented.jpg"
+"\Epoc32\Data\z\multimedia\t_imagedecoder\dec1bit.mbm"-"!:\multimedia\t_imagedecoder\dec1bit.mbm"
+"\Epoc32\Data\z\multimedia\t_imagedecoder\dec2bit.mbm"-"!:\multimedia\t_imagedecoder\dec2bit.mbm"
+"\Epoc32\Data\z\multimedia\t_imagedecoder\dec4bit.mbm"-"!:\multimedia\t_imagedecoder\dec4bit.mbm"
+"\Epoc32\Data\z\multimedia\t_imagedecoder\dec8bit.mbm"-"!:\multimedia\t_imagedecoder\dec8bit.mbm"
+"\Epoc32\Data\z\multimedia\t_imagedecoder\dec16bit.mbm"-"!:\multimedia\t_imagedecoder\dec16bit.mbm"
+"\Epoc32\Data\z\multimedia\t_imagedecoder\dec24bit.mbm"-"!:\multimedia\t_imagedecoder\dec24bit.mbm"
+"\Epoc32\data\z\multimedia\t_imagedecoder\24bit.mng"-"!:\multimedia\t_imagedecoder\24bit.mng"
+"\Epoc32\data\z\multimedia\t_imagedecoder\1bit.ota"-"!:\multimedia\t_imagedecoder\1bit.ota"
+"\Epoc32\data\z\multimedia\t_imagedecoder\1bit.png"-"!:\multimedia\t_imagedecoder\1bit.png"
+"\Epoc32\data\z\multimedia\t_imagedecoder\4bit.png"-"!:\multimedia\t_imagedecoder\4bit.png"
+"\Epoc32\data\z\multimedia\t_imagedecoder\8bit.png"-"!:\multimedia\t_imagedecoder\8bit.png"
+"\Epoc32\data\z\multimedia\t_imagedecoder\24bit.png"-"!:\multimedia\t_imagedecoder\24bit.png"
+"\Epoc32\data\z\multimedia\t_imagedecoder\1bitG3.tif"-"!:\multimedia\t_imagedecoder\1bitG3.tif"
+"\Epoc32\data\z\multimedia\t_imagedecoder\1bitG4.tif"-"!:\multimedia\t_imagedecoder\1bitG4.tif"
+"\Epoc32\data\z\multimedia\t_imagedecoder\1bit.tif"-"!:\multimedia\t_imagedecoder\1bit.tif"
+"\Epoc32\data\z\multimedia\t_imagedecoder\4bit.tif"-"!:\multimedia\t_imagedecoder\4bit.tif"
+"\Epoc32\data\z\multimedia\t_imagedecoder\8bit.tif"-"!:\multimedia\t_imagedecoder\8bit.tif"
+"\Epoc32\data\z\multimedia\t_imagedecoder\24bit.tif"-"!:\multimedia\t_imagedecoder\24bit.tif"
+"\Epoc32\data\z\multimedia\t_imagedecoder\1bit.wbmp"-"!:\multimedia\t_imagedecoder\1bit.wbmp"
+"\Epoc32\data\z\multimedia\t_imagedecoder\24bit.wmf"-"!:\multimedia\t_imagedecoder\24bit.wmf"
+"\Epoc32\data\z\multimedia\t_imagedecoder\corrupted.bmp"-"!:\multimedia\t_imagedecoder\corrupted.bmp"
+"\Epoc32\data\z\multimedia\t_imagedecoder\partial.bmp"-"!:\multimedia\t_imagedecoder\partial.bmp"
+
+; Required files
+; None
+
+; Component .sis files
+; None
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/50_Symbian_ImageEncoder.pkg	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,53 @@
+;
+; Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+; All rights reserved.
+; This component and the accompanying materials are made available
+; under the terms of the License "Symbian Foundation License v1.0"
+; which accompanies this distribution, and is available
+; at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+;
+; Initial Contributors:
+; Nokia Corporation - initial contribution.
+;
+; Contributors:
+;
+; Description:      
+;
+
+; Languages -
+&EN
+
+; Installation header
+; UID is the app's UID
+#{"T_ImageEncoder"},(0x20000F73),1,0,0
+
+;%{"Vendor-EN"}
+;:"Symbian"
+
+; Localised Vendor name
+%{"Nokia"}
+
+; Unique Vendor name
+:"Nokia"
+
+;Supports S60 3rd Edition
+[0x101F7961], 3, *, *, {"Series60ProductID"}
+
+"\Epoc32\release\armv5\urel\T_ImageEncoder.exe"-"!:\sys\bin\T_ImageEncoder.exe"
+"\Epoc32\data\z\multimedia\enc.bat"-"!:\multimedia\enc.bat"
+"\Epoc32\data\z\multimedia\MM-ICL-ENCDE-PublicApi.script"-"!:\multimedia\MM-ICL-ENCDE-PublicApi.script"
+"\Epoc32\data\z\multimedia\MM-ICL-ENCDE-PublicApi.tcs"-"!:\multimedia\MM-ICL-ENCDE-PublicApi.tcs"
+"\Epoc32\data\z\multimedia\MM-ICL-ENCDE-PublicApi.ini"-"!:\multimedia\MM-ICL-ENCDE-PublicApi.ini"
+"\Epoc32\Data\z\multimedia\t_imageencoder\enc1bit.mbm"-"!:\multimedia\t_imageencoder\enc1bit.mbm"
+"\Epoc32\Data\z\multimedia\t_imageencoder\enc2bit.mbm"-"!:\multimedia\t_imageencoder\enc2bit.mbm"
+"\Epoc32\Data\z\multimedia\t_imageencoder\enc4bit.mbm"-"!:\multimedia\t_imageencoder\enc4bit.mbm"
+"\Epoc32\Data\z\multimedia\t_imageencoder\enc8bit.mbm"-"!:\multimedia\t_imageencoder\enc8bit.mbm"
+"\Epoc32\Data\z\multimedia\t_imageencoder\enc16bit.mbm"-"!:\multimedia\t_imageencoder\enc16bit.mbm"
+"\Epoc32\Data\z\multimedia\t_imageencoder\enc24bit.mbm"-"!:\multimedia\t_imageencoder\enc24bit.mbm"
+
+
+; Required files
+; None
+
+; Component .sis files
+; None
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/50_Symbian_T_MdaAudioToneUtility.pkg	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,50 @@
+;
+; Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+; All rights reserved.
+; This component and the accompanying materials are made available
+; under the terms of the License "Symbian Foundation License v1.0"
+; which accompanies this distribution, and is available
+; at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+;
+; Initial Contributors:
+; Nokia Corporation - initial contribution.
+;
+; Contributors:
+;
+; Description:      
+;
+
+; Languages - 
+&EN
+
+; Installation header
+; UID is the app's UID
+#{"T_MdaAudioToneUtility"},(0x20000F79),1,0,0
+
+;%{"Vendor-EN"}
+;:"Symbian"
+
+; Localised Vendor name
+%{"Nokia"}
+
+; Unique Vendor name
+:"Nokia"
+
+;Supports S60 3rd Edition
+[0x101F7961], 3, *, *, {"Series60ProductID"}
+
+"\Epoc32\release\armv5\urel\T_MdaAudioToneUtility.exe"-"!:\sys\bin\T_MdaAudioToneUtility.exe"
+"\Epoc32\data\z\multimedia\tmdtone.bat"-"!:\multimedia\tmdtone.bat"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-TONE-PublicAPI.script"-"!:\multimedia\MM-MMF-ACLNT-TONE-PublicAPI.script"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-TONE-PublicAPI.tcs"-"!:\multimedia\MM-MMF-ACLNT-TONE-PublicAPI.tcs"
+"\Epoc32\data\z\multimedia\MM-MMF-ACLNT-TONE-PublicAPI.ini"-"!:\multimedia\MM-MMF-ACLNT-TONE-PublicAPI.ini"
+"\Epoc32\data\z\multimedia\t_audiotoneutility\sequence1.sqn"-"!:\multimedia\t_audiotoneutility\sequence1.sqn"
+"\Epoc32\data\z\multimedia\t_audiotoneutility\sequence2.sqn"-"!:\multimedia\t_audiotoneutility\sequence2.sqn"
+"\Epoc32\data\z\multimedia\t_audiotoneutility\badsequence.sqn"-"!:\multimedia\t_audiotoneutility\badsequence.sqn"
+;"\Epoc32\data\z\multimedia\t_multimedia.ini"-"!:\multimedia\t_multimedia.ini"
+
+; Required files
+; None
+
+; Component .sis files
+; None
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/50_Symbian_T_MidiClientUtility.pkg	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,52 @@
+;
+; Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+; All rights reserved.
+; This component and the accompanying materials are made available
+; under the terms of the License "Symbian Foundation License v1.0"
+; which accompanies this distribution, and is available
+; at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+;
+; Initial Contributors:
+; Nokia Corporation - initial contribution.
+;
+; Contributors:
+;
+; Description:      
+;
+
+; Languages - 
+&EN
+
+; Installation header
+; UID is the app's UID
+#{"T_MidiClientUtility"},(0x20000F7A),1,0,0
+
+;%{"Vendor-EN"}
+;:"Symbian"
+
+; Localised Vendor name
+%{"Nokia"}
+
+; Unique Vendor name
+:"Nokia"
+
+;Supports S60 3rd Edition
+[0x101F7961], 3, *, *, {"Series60ProductID"}
+
+"\Epoc32\release\armv5\urel\T_MidiClientUtility.exe"-"!:\sys\bin\T_MidiClientUtility.exe"
+"\Epoc32\data\z\multimedia\tmidi.bat"-"!:\multimedia\tmidi.bat"
+"\Epoc32\data\z\multimedia\MM-MMF-MIDI-PublicAPI.script"-"!:\multimedia\MM-MMF-MIDI-PublicAPI.script"
+"\Epoc32\data\z\multimedia\MM-MMF-MIDI-PublicAPI.tcs"-"!:\multimedia\MM-MMF-MIDI-PublicAPI.tcs"
+"\Epoc32\data\z\multimedia\MM-MMF-MIDI-PublicAPI.ini"-"!:\multimedia\MM-MMF-MIDI-PublicAPI.ini"
+"\Epoc32\data\z\multimedia\t_midiclientutility\midi.mid"-"!:\multimedia\t_midiclientutility\midi.mid"
+"\Epoc32\data\z\multimedia\t_midiclientutility\textmidi.mid"-"!:\multimedia\t_midiclientutility\textmidi.mid"
+;"\Epoc32\data\z\multimedia\t_midiclientutility\sample.gm"-"!:\multimedia\t_midiclientutility\sample.gm"
+"\Epoc32\data\z\multimedia\t_midiclientutility\midiclienttest.gm"-"!:\multimedia\t_midiclientutility\midiclienttest.gm"
+;"\Epoc32\data\z\multimedia\t_multimedia.ini"-"!:\multimedia\t_multimedia.ini"
+
+
+; Required files
+; None
+
+; Component .sis files
+; None
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/MM-ICL-DECDE-PublicApi.tcs	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,1 @@
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/MM-ICL-ENCDE-PublicApi.tcs	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,1 @@
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/MM-MMF-ACLNT-CNVRT-PublicAPI.tcs	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,1 @@
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/MM-MMF-ACLNT-INPT-PublicAPI.tcs	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,1 @@
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/MM-MMF-ACLNT-OUTPT-PublicAPI.tcs	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,1 @@
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/MM-MMF-ACLNT-PLYR-PublicAPI.tcs	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,1 @@
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/MM-MMF-ACLNT-RCRDR-PublicAPI.tcs	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,1 @@
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/MM-MMF-ACLNT-TONE-PublicAPI.tcs	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,1 @@
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/MM-MMF-MIDI-PublicAPI.tcs	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,1 @@
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/SYSLIB-ECOM-PublicAPI.tcs	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,1 @@
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/dec.bat	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,22 @@
+rem
+rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+rem All rights reserved.
+rem This component and the accompanying materials are made available
+rem under the terms of the License "Symbian Foundation License v1.0"
+rem which accompanies this distribution, and is available
+rem at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+rem
+rem Initial Contributors:
+rem Nokia Corporation - initial contribution.
+rem
+rem Contributors:
+rem
+rem Description:      
+rem
+
+testexecute \multimedia\MM-ICL-DECDE-PublicApi
+
+md e:\bctest
+md e:\bctest\results
+
+copy c:\logs\testexecute\testresults.htm e:\bctest\results\Symbian_ICLDecoder.htm
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/ecom.bat	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,22 @@
+rem
+rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+rem All rights reserved.
+rem This component and the accompanying materials are made available
+rem under the terms of the License "Symbian Foundation License v1.0"
+rem which accompanies this distribution, and is available
+rem at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+rem
+rem Initial Contributors:
+rem Nokia Corporation - initial contribution.
+rem
+rem Contributors:
+rem
+rem Description:      
+rem
+
+md e:\BCTest
+md e:\BCTest\results
+
+testexecute \ecom\SYSLIB-ECOM-PublicAPI
+
+copy c:\Logs\Testexecute\TestResults.htm e:\BCTest\results\Symb_SyslibsECOM.htm
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/enc.bat	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,22 @@
+rem
+rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+rem All rights reserved.
+rem This component and the accompanying materials are made available
+rem under the terms of the License "Symbian Foundation License v1.0"
+rem which accompanies this distribution, and is available
+rem at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+rem
+rem Initial Contributors:
+rem Nokia Corporation - initial contribution.
+rem
+rem Contributors:
+rem
+rem Description:      
+rem
+
+testexecute \multimedia\MM-ICL-ENCDE-PublicApi
+
+md e:\bctest
+md e:\bctest\results
+
+copy c:\logs\testexecute\testresults.htm e:\bctest\results\Symbian_ICLEncoder.htm
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/tacu.bat	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,22 @@
+rem
+rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+rem All rights reserved.
+rem This component and the accompanying materials are made available
+rem under the terms of the License "Symbian Foundation License v1.0"
+rem which accompanies this distribution, and is available
+rem at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+rem
+rem Initial Contributors:
+rem Nokia Corporation - initial contribution.
+rem
+rem Contributors:
+rem
+rem Description:      
+rem
+
+testexecute \multimedia\MM-MMF-ACLNT-CNVRT-PublicAPI
+
+md e:\bctest
+md e:\bctest\results
+
+copy c:\logs\testexecute\testresults.htm e:\bctest\results\Symbian_MMFAudioConvertUtility.htm
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/tais.bat	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,22 @@
+rem
+rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+rem All rights reserved.
+rem This component and the accompanying materials are made available
+rem under the terms of the License "Symbian Foundation License v1.0"
+rem which accompanies this distribution, and is available
+rem at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+rem
+rem Initial Contributors:
+rem Nokia Corporation - initial contribution.
+rem
+rem Contributors:
+rem
+rem Description:      
+rem
+
+testexecute \multimedia\MM-MMF-ACLNT-INPT-PublicAPI
+
+md e:\bctest
+md e:\bctest\results
+
+copy c:\logs\testexecute\testresults.htm e:\bctest\results\Symbian_MMFAudioInputStream.htm
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/taos.bat	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,22 @@
+rem
+rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+rem All rights reserved.
+rem This component and the accompanying materials are made available
+rem under the terms of the License "Symbian Foundation License v1.0"
+rem which accompanies this distribution, and is available
+rem at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+rem
+rem Initial Contributors:
+rem Nokia Corporation - initial contribution.
+rem
+rem Contributors:
+rem
+rem Description:      
+rem
+
+testexecute \multimedia\MM-MMF-ACLNT-OUTPT-PublicAPI
+
+md e:\bctest
+md e:\bctest\results
+
+copy c:\logs\testexecute\testresults.htm e:\bctest\results\Symbian_MMFAudioOutputStream.htm
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/tapu.bat	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,22 @@
+rem
+rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+rem All rights reserved.
+rem This component and the accompanying materials are made available
+rem under the terms of the License "Symbian Foundation License v1.0"
+rem which accompanies this distribution, and is available
+rem at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+rem
+rem Initial Contributors:
+rem Nokia Corporation - initial contribution.
+rem
+rem Contributors:
+rem
+rem Description:      
+rem
+
+testexecute \multimedia\MM-MMF-ACLNT-PLYR-PublicAPI
+
+md e:\bctest
+md e:\bctest\results
+
+copy c:\logs\testexecute\testresults.htm e:\bctest\results\Symbian_MMFAudioPlayerUtility.htm
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/taru.bat	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,22 @@
+rem
+rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+rem All rights reserved.
+rem This component and the accompanying materials are made available
+rem under the terms of the License "Symbian Foundation License v1.0"
+rem which accompanies this distribution, and is available
+rem at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+rem
+rem Initial Contributors:
+rem Nokia Corporation - initial contribution.
+rem
+rem Contributors:
+rem
+rem Description:      
+rem
+
+testexecute \multimedia\MM-MMF-ACLNT-RCRDR-PublicAPI
+
+md e:\bctest
+md e:\bctest\results
+
+copy c:\logs\testexecute\testresults.htm e:\bctest\results\Symbian_MMFAudioRecorderUtility.htm
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/tmdtone.bat	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,22 @@
+rem
+rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+rem All rights reserved.
+rem This component and the accompanying materials are made available
+rem under the terms of the License "Symbian Foundation License v1.0"
+rem which accompanies this distribution, and is available
+rem at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+rem
+rem Initial Contributors:
+rem Nokia Corporation - initial contribution.
+rem
+rem Contributors:
+rem
+rem Description:      
+rem
+
+md e:\BCTest
+md e:\BCTest\results
+
+testexecute \multimedia\MM-MMF-ACLNT-TONE-PublicAPI
+
+copy c:\Logs\Testexecute\TestResults.htm e:\BCTest\results\Symbian_MMFtmdaaudiotoneutility.htm
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/bctest/pkg/tmidi.bat	Fri Sep 25 10:52:44 2009 +0100
@@ -0,0 +1,22 @@
+rem
+rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+rem All rights reserved.
+rem This component and the accompanying materials are made available
+rem under the terms of the License "Symbian Foundation License v1.0"
+rem which accompanies this distribution, and is available
+rem at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+rem
+rem Initial Contributors:
+rem Nokia Corporation - initial contribution.
+rem
+rem Contributors:
+rem
+rem Description:      
+rem
+
+md e:\BCTest
+md e:\BCTest\results
+
+testexecute \multimedia\MM-MMF-MIDI-PublicAPI
+
+copy c:\Logs\Testexecute\TestResults.htm e:\BCTest\results\Symbian_MMFtmidiclientutility.htm
\ No newline at end of file