genericservices/taskscheduler/Test/MinimalTaskHandler/faultyminimaltaskhandler.cpp
changeset 0 e4d67989cc36
equal deleted inserted replaced
-1:000000000000 0:e4d67989cc36
       
     1 // Copyright (c) 2007-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 //
       
    15 
       
    16 #include <schtask.h>
       
    17 #include <s32file.h>
       
    18 
       
    19 
       
    20 //***********************************************************************************
       
    21 LOCAL_D TInt Execute()
       
    22 	{
       
    23 	TInt err = KErrNoMemory;
       
    24 
       
    25 	RFile file;
       
    26 			
       
    27 	// Adopt the task file from the Task Scheduler
       
    28 	err = file.AdoptFromCreator(TScheduledTaskFile::FsHandleIndex(),
       
    29 								TScheduledTaskFile::FileHandleIndex());
       
    30 	
       
    31 	//Panic the client to test server robustness							
       
    32 	User::Panic(_L("Test Panic"),0);
       
    33 	
       
    34 	file.Close();
       
    35 	return err;
       
    36 
       
    37 	}
       
    38 
       
    39 
       
    40 //***********************************************************************************
       
    41 GLDEF_C TInt E32Main()
       
    42 	{
       
    43 	return Execute();
       
    44 	}