debugsrv/runmodedebug/tsrc/rm_debug/multi_agent_tests/t_multi_agent_launcher.h
changeset 56 aa2539c91954
equal deleted inserted replaced
54:a151135b0cf9 56:aa2539c91954
       
     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 "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 #ifndef RMDEBUG_MULTI_AGENT_LAUNCHER_H
       
    20 #define RMDEBUG_MULTI_AGENT_LAUNCHER_H
       
    21 
       
    22 #include <e32test.h>
       
    23 
       
    24 // Default test runs
       
    25 const TInt KNumTestRuns = 1; 
       
    26 
       
    27 // Default number of targets per agent
       
    28 const TInt KNumTargets = 5;
       
    29 
       
    30 // Default number of agents, if changing this make sure there are enough apps being built 
       
    31 const TInt KNumAgents = 2; 
       
    32 
       
    33 _LIT(KAgentExe,"z:\\sys\\bin\\t_rmdebug_multi_agent.exe");
       
    34 _LIT(KAgentOptions,"-n%d -o%d -a%d");
       
    35 
       
    36 _LIT(KLaunchSemaphoreName, "t_rmdebug_launch_semaphore");
       
    37 _LIT(KLaunchSemaphoreSearchString, "t_rmdebug_launch_semaphore*");
       
    38 
       
    39 #endif // RMDEBUG_MULTI_AGENT_LAUNCHER_H
       
    40