debugsrv/runmodedebug/rmdebug_test/rm_debug/multi_agent_tests/t_multi_agent_launcher.h
branchRCL_3
changeset 21 52e343bb8f80
parent 20 ca8a1b6995f6
child 22 e26895079d7c
equal deleted inserted replaced
20:ca8a1b6995f6 21:52e343bb8f80
     1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of the License "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Definitions for agent launcher
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file
       
    20  @internalTechnology
       
    21  @released
       
    22 */
       
    23 
       
    24 #ifndef RMDEBUG_MULTI_AGENT_LAUNCHER_H
       
    25 #define RMDEBUG_MULTI_AGENT_LAUNCHER_H
       
    26 
       
    27 #include <e32test.h>
       
    28 
       
    29 // Default test runs
       
    30 const TInt KNumTestRuns = 1; 
       
    31 
       
    32 // Default number of targets per agent
       
    33 const TInt KNumTargets = 5;
       
    34 
       
    35 // Default number of agents, if changing this make sure there are enough apps being built 
       
    36 const TInt KNumAgents = 2; 
       
    37 
       
    38 _LIT(KAgentExe,"z:\\sys\\bin\\t_rmdebug_multi_agent.exe");
       
    39 _LIT(KAgentOptions,"-n%d -o%d -a%d");
       
    40 
       
    41 _LIT(KLaunchSemaphoreName, "t_rmdebug_launch_semaphore");
       
    42 _LIT(KLaunchSemaphoreSearchString, "t_rmdebug_launch_semaphore*");
       
    43 
       
    44 #endif // RMDEBUG_MULTI_AGENT_LAUNCHER_H
       
    45