// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// Test command lists
//
//
#include <ssm/ssmcmd.rh>
// valid struct
RESOURCE SSM_START_AMA_STARTER r_command_valid_data
{
severity = ECmdMediumSeverity;
execution_behaviour = ESsmFireAndForget;
dsc_id = 0x1234;
}
// invalid struct
RESOURCE SSM_START_AMA_STARTER r_command_invalid_data
{
severity = ECmdMediumSeverity;
execution_behaviour = ESsmFireAndForget;
dsc_id = 0;
}
// invalid struct
RESOURCE SSM_START_AMA_STARTER r_command_invalid_execution_behaviour
{
severity = ECmdMediumSeverity;
execution_behaviour = -1;
dsc_id = 0x1234;
}
#ifdef SYMBIAN_SSM_FLEXIBLE_MERGE
// valid test priority
RESOURCE SSM_START_AMA_STARTER r_command_valid_test_priority
{
severity = ECmdMediumSeverity;
execution_behaviour = ESsmFireAndForget;
dsc_id = 0x1234;
priority = 1000;
}
//command with initial version should have default priority
RESOURCE SSM_START_AMA_STARTER r_command_first_version
{
version = ECmdAmaStarterInitialVersion;
severity = ECmdMediumSeverity;
execution_behaviour = ESsmFireAndForget;
dsc_id = 0x1234;
}
// neagtive test priority
RESOURCE SSM_START_AMA_STARTER r_command_negative_priority
{
severity = ECmdMediumSeverity;
execution_behaviour = ESsmFireAndForget;
dsc_id = 0x1234;
priority = -1; // negative priority value will be interpreted as very high positive vale
}
#endif