1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mmtestenv/mmtesttools/Scripts/run3gplibrarytests.bat Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,109 @@
1.4 +rem Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +rem All rights reserved.
1.6 +rem This component and the accompanying materials are made available
1.7 +rem under the terms of "Eclipse Public License v1.0"
1.8 +rem which accompanies this distribution, and is available
1.9 +rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +rem
1.11 +rem Initial Contributors:
1.12 +rem Nokia Corporation - initial contribution.
1.13 +rem
1.14 +rem Contributors:
1.15 +rem
1.16 +rem Description:
1.17 +rem
1.18 +
1.19 +REM ***********************************************
1.20 +REM ****************** 3GP TESTS ******************
1.21 +REM ***********************************************
1.22 +
1.23 +REM NOTE: This BAT file is intended to be run in EShell
1.24 +REM on HW only. On Emulator builds the test files already
1.25 +REM reside in the correct directories on C: so you only
1.26 +REM need to call testexecute with the desired script file.
1.27 +
1.28 +REM =============================================================
1.29 +REM Setup
1.30 +REM =============================================================
1.31 +
1.32 +REM Prepare memory card for test logs
1.33 +del e:\logs\testexecute\tsu_3gp_*
1.34 +md e:\logs\
1.35 +md e:\logs\testexecute\
1.36 +
1.37 +REM 3GP test scripts expect to find the INIs on c:
1.38 +md c:\mm\
1.39 +copy z:\mm\tsu_3gp*.ini c:\mm\
1.40 +
1.41 +REM =============================================================
1.42 +REM Run tests that use test data directly from memory card (e:)
1.43 +REM =============================================================
1.44 +
1.45 +REM Parsing tests
1.46 +testexecute z:\mm\tsu_3gp_parse_format_3gp_te.script
1.47 +move c:\logs\testexecute\tsu_3gp*.htm e:\logs\testexecute\
1.48 +
1.49 +testexecute z:\mm\tsu_3gp_parse_format_mp4_te.script
1.50 +move c:\logs\testexecute\tsu_3gp*.htm e:\logs\testexecute\
1.51 +
1.52 +testexecute z:\mm\tsu_3gp_parse_format_valid_te.script
1.53 +move c:\logs\testexecute\tsu_3gp*.htm e:\logs\testexecute\
1.54 +
1.55 +testexecute z:\mm\tsu_3gp_parse_and_check_te.script
1.56 +move c:\logs\testexecute\tsu_3gp*.htm e:\logs\testexecute\
1.57 +
1.58 +REM Composing tests
1.59 +testexecute z:\mm\tsu_3gp_compose_format_3g2_te.script
1.60 +move c:\logs\testexecute\tsu_3gp*.htm e:\logs\testexecute\
1.61 +
1.62 +testexecute z:\mm\tsu_3gp_compose_format_3gp_te.script
1.63 +move c:\logs\testexecute\tsu_3gp*.htm e:\logs\testexecute\
1.64 +
1.65 +testexecute z:\mm\tsu_3gp_compose_format_mp4_te.script
1.66 +move c:\logs\testexecute\tsu_3gp*.htm e:\logs\testexecute\
1.67 +
1.68 +REM Other tests
1.69 +testexecute z:\mm\tsu_3gp_performance_te.script
1.70 +move c:\logs\testexecute\tsu_3gp*.htm e:\logs\testexecute\
1.71 +
1.72 +testexecute z:\mm\tsu_3gp_interop_te.script
1.73 +move c:\logs\testexecute\tsu_3gp*.htm e:\logs\testexecute\
1.74 +
1.75 +REM =============================================================
1.76 +REM Now run tests that need to copy data into c: first
1.77 +REM =============================================================
1.78 +
1.79 +REM Parsing tests
1.80 +md c:\3gplibrary\
1.81 +copy e:\3gplibrary\* c:\3gplibrary\
1.82 +
1.83 +testexecute z:\mm\tsu_3gp_parse_api_te.script
1.84 +move c:\logs\testexecute\tsu_3gp*.htm e:\logs\testexecute\
1.85 +
1.86 +testexecute z:\mm\tsu_3gp_parse_oom1_te.script
1.87 +move c:\logs\testexecute\tsu_3gp*.htm e:\logs\testexecute\
1.88 +
1.89 +testexecute z:\mm\tsu_3gp_parse_oom2_te.script
1.90 +move c:\logs\testexecute\tsu_3gp*.htm e:\logs\testexecute\
1.91 +
1.92 +del c:\3gplibrary\*
1.93 +
1.94 +REM Composing tests
1.95 +testexecute z:\mm\tsu_3gp_compose_api_te.script
1.96 +move c:\logs\testexecute\tsu_3gp*.htm e:\logs\testexecute\
1.97 +
1.98 +testexecute z:\mm\tsu_3gp_compose_oom_te.script
1.99 +move c:\logs\testexecute\tsu_3gp*.htm e:\logs\testexecute\
1.100 +
1.101 +del c:\3gplibrary\temp\testing.mp4
1.102 +rd c:\3gplibrary\temp\
1.103 +rd c:\3gplibrary\
1.104 +
1.105 +REM =============================================================
1.106 +REM Clean up
1.107 +REM =============================================================
1.108 +
1.109 +REM delete INI files from C: (need to make non read-only first)
1.110 +attrib c:\mm\tsu_3gp* -r
1.111 +del c:\mm\tsu_3gp*
1.112 +