sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Constants used in test configuration files. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalComponent sl@0: @test sl@0: */ sl@0: sl@0: #ifndef MAKETESTCONFIG_H sl@0: #define MAKETESTCONFIG_H sl@0: sl@0: #include sl@0: sl@0: // Naming scheme for feature ID constants in small valid config test: sl@0: // sl@0: // UNFeat = unsupported feature not in default=supported range (need not be listed in config file) sl@0: // URFeat = unsupported feature in default=supported range (must be listed in config file) sl@0: // SNFeat = supported feature not in default=supported range (must be listed in config file) sl@0: // SRFeat = supported feature in default=supported range (need not be listed in config file) sl@0: // LoFeat = low-feature-Id of default=supported range sl@0: // HiFeat = high-feature-Id of default=supported range sl@0: // Id = TInt identifier sl@0: // St = status word sl@0: sl@0: const TUint32 KFeatRegTest1_01_UNFeatId = 0x12345679; sl@0: const TUint32 KFeatRegTest1_02_SNFeatId = 0x12345678; sl@0: const TUint32 KFeatRegTest1_02_SNFeatSt = 0x41; // low-bit set = supported, other bits to retrieve through API sl@0: const TUint32 KFeatRegTest1_03_LoFeatId = 0x20000000; sl@0: const TUint32 KFeatRegTest1_04_HiFeatId = 0x20000FFF; sl@0: const TUint32 KFeatRegTest1_05_URFeatId = 0x20000100; sl@0: const TUint32 KFeatRegTest1_05_URFeatSt = 0x2; // low-bit not set = unsupported, 2nd bit set = upgradable sl@0: const TUint32 KFeatRegTest1_06_SRFeatId = 0x20000123; sl@0: const TUint32 KFeatRegTest_DummyRangeId = 0x2FFFFFFF; sl@0: sl@0: // Parameters for large valid config test: sl@0: // start, stop & increment of features added to config file sl@0: // plus "not supported" bit to alternate support of queried features. sl@0: const TUint32 KFeatRegTest2_01_FirstId = 0x00000000; sl@0: const TUint32 KFeatRegTest2_02_LastId = 0xFF000000; sl@0: const TUint32 KFeatRegTest2_03_IncrId = 0x00010000; sl@0: const TUint32 KFeatRegTest2_04_numTestFeatures = 0x100; sl@0: // listed features are not supported if following bit set (alternately with above increment): sl@0: const TUint32 KFeatRegTest2_05_NotSupportedBit = 0x01000000; sl@0: // default=supported ranges have following bit set: sl@0: const TUint32 KFeatRegTest2_06_DefSupportedBit = 0x20000000; sl@0: const TUint32 KFeatRegTest2_07_rangeCount = 4; sl@0: sl@0: #endif