kernel/eka/rombuild/f32_perf_tests.oby
changeset 0 a41df078684a
child 43 c1f20ce4abcf
equal deleted inserted replaced
-1:000000000000 0:a41df078684a
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 /*==================================================================================================
       
    18     This oby file is used to build ROM for f32 performance tests automatically. 
       
    19     Includes standard F32 tests + specific files for the performance tests. 
       
    20     Specific "autoexec.bat" file defines what will be run on startup.
       
    21         
       
    22     These performance tests will be run on the MMC/SD drive with mounted by default filesystem (it will be FAT). 
       
    23 
       
    24 
       
    25 ==================================================================================================*/
       
    26 
       
    27 //------------ this is a standard F32 tests part ---------------------------------------------------
       
    28 
       
    29 #define BASE_ROM
       
    30 #define E32TESTS_INCLUDED
       
    31 
       
    32 #include <rom\##VARIANT##\header.iby>
       
    33 
       
    34 files=
       
    35 
       
    36 #ifdef PAGED_ROM
       
    37 data=gentestpaged.txt           Test\test_paged.cpp
       
    38 #endif
       
    39 
       
    40 #include <rom\##VARIANT##\kernel.iby>
       
    41 #include "user.iby"
       
    42 #include <rom\hal\hal.iby>
       
    43 #include <rom\f32\f32.iby>
       
    44 
       
    45 // Include e32 and f32 tests
       
    46 
       
    47 #include <rom##E32PATH##\kernelhwsrv\kerneltest\e32test\group\##MAIN##test.iby>
       
    48 #ifndef VARIANT_PATH
       
    49 #include <rom##E32PATH##\##VARIANT##\test\##MAIN##test.iby>
       
    50 #else
       
    51 #define inc(a,b,c) <a\\b\\c>
       
    52 #include inc(rom##E32PATH##,VARIANT_PATH,\test\##MAIN##test.iby)
       
    53 #endif
       
    54 
       
    55 #include <rom##E32PATH##\kernelhwsrv\kerneltest\f32test\group\##MAIN##test.iby>
       
    56 #include <rom##E32PATH##\kernelhwsrv\kerneltest\f32test\rofs\##MAIN##test.iby>
       
    57 
       
    58 #if defined(SYMBIAN_INCLUDE_USB_OTG_HOST) && defined(WITH_MASS_STORAGE)
       
    59 #include <rom##E32PATH##\kernelhwsrv\kerneltest\f32test\shostmassstorage\##MAIN##test.iby>
       
    60 #endif
       
    61 
       
    62 #ifdef PAGED_ROM
       
    63 data=gentestnonpaged.txt            Test\test_unpaged.cpp   unpaged
       
    64 #endif
       
    65 
       
    66 //-------------------------------------------------------------------------------------------------
       
    67 //------------ this is the performance tests specific part ----------------------------------------
       
    68 //-------------------------------------------------------------------------------------------------
       
    69 
       
    70 
       
    71 //-- this autoexec.bat will run automatically the f32 performance tests
       
    72 data=EPOCROOT##epoc32\rom\f32_perf_test_autoexec.bat \autoexec.bat
       
    73 
       
    74 data=EPOCROOT##epoc32\rom\##VARIANT##\f32_perf_test.bat Test\f32_perf_test.bat
       
    75 data=EPOCROOT##epoc32\rom\##VARIANT##\fat_perf_test.bat Test\fat_perf_test.bat
       
    76 
       
    77 data=EPOCROOT##epoc32\rom\##VARIANT##\fat_perf_test_dircache_setup.bat Test\fat_perf_test_dircache_setup.bat
       
    78 data=EPOCROOT##epoc32\rom\##VARIANT##\fat_perf_test_dircache_fully_cached_file_creation.bat Test\fat_perf_test_dircache_fully_cached_file_creation.bat
       
    79 data=EPOCROOT##epoc32\rom\##VARIANT##\fat_perf_test_dircache_fully_cached_file_open_linear.bat Test\fat_perf_test_dircache_fully_cached_file_open_linear.bat
       
    80 data=EPOCROOT##epoc32\rom\##VARIANT##\fat_perf_test_dircache_fully_cached_file_open_random.bat Test\fat_perf_test_dircache_fully_cached_file_open_random.bat
       
    81 data=EPOCROOT##epoc32\rom\##VARIANT##\fat_perf_test_dircache_partially_cached_1.7MB_data.bat Test\fat_perf_test_dircache_partially_cached_1.7MB_data.bat
       
    82 data=EPOCROOT##epoc32\rom\##VARIANT##\fat_perf_test_dircache_partially_cached_5.1MB_data.bat Test\fat_perf_test_dircache_partially_cached_5.1MB_data.bat
       
    83 data=EPOCROOT##epoc32\rom\##VARIANT##\fat_perf_test_dircache_partially_cached_6.8MB_data.bat Test\fat_perf_test_dircache_partially_cached_6.8MB_data.bat
       
    84