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: // For platsec tests: attempts to set the value of the Feature Registry property. sl@0: // Feature Registry property must be defined first. sl@0: // If run with argument "KErrNone", returns KErrNone if publish is successful, which sl@0: // should only happen if this EXE passes the write policy of the feature property. sl@0: // If run with argument "KErrPermissionDenied" it returns KErrNone (success) if publish sl@0: // failed for reason KErrPermissionDenied, otherwise it will return a different error code. sl@0: // Use SETCAP to vary the capabilities of this executable. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalComponent sl@0: @test sl@0: */ sl@0: sl@0: #include sl@0: #include sl@0: #include "featregcmn.h" sl@0: sl@0: _LIT(KTestResultNone, "KErrNone"); sl@0: _LIT(KTestResultPermissionDenied, "KErrPermissionDenied"); sl@0: sl@0: TInt E32Main() sl@0: { sl@0: TFileName cmdLine; sl@0: User::CommandLine(cmdLine); sl@0: sl@0: TInt result = RProperty::Set(KFeaturePropCat, KFeaturePropKey, KNullDesC8); sl@0: sl@0: if (cmdLine.Find(KTestResultNone) >= 0) sl@0: { sl@0: // result should already be KErrNone if succeeded sl@0: } sl@0: else if (cmdLine.Find(KTestResultPermissionDenied) >= 0) sl@0: { sl@0: if (result == KErrPermissionDenied) sl@0: { sl@0: result = KErrNone; sl@0: } sl@0: else sl@0: { sl@0: result = KErrGeneral; sl@0: } sl@0: } sl@0: else sl@0: { sl@0: result = KErrArgument; sl@0: } sl@0: sl@0: return result; sl@0: }