Update contrib.
1 // Copyright (c) 2006-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 the License "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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32test\dll\t_oeexport.cpp
16 // REMOVE_ME - Dummy test case to invoke t_oeexport and t_oeexport1 test cases
17 // Should be removed once tools have been updated and t_oeexport etc can be built
20 // Platforms/Drives/Compatibility:
22 // Assumptions/Requirement/Pre-requisites:
23 // Failures and causes:
24 // Base Port information:
31 RTest test(_L("T_OEFIXUP"));
41 test.Start(_L("Test invoke t_oeexport"));
42 test (process.Create(_L("t_oeexport.exe"), _L("x")) == KErrNone);
45 User::WaitForRequest(req);
46 test(process.ExitReason() == KErrNone);
47 test(process.ExitType() != EExitPanic);
50 test.Next(_L("Test invoke t_oeexport1"));
51 test (process.Create(_L("t_oeexport1.exe"), _L("x")) == KErrNone);
54 User::WaitForRequest(req);
55 test(process.ExitReason() == KErrNone);
56 test(process.ExitType() != EExitPanic);