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_oeexport2.cpp
15 // Test loader copes with already loaded OE dlls by running T_OEEXPORT after
16 // we have already loaded a DLL which it depends on (T_OEDLL1.DLL).
22 #include <e32ldr_private.h>
24 RTest test(_L("T_OEEXPORT2"));
30 // Turn off evil lazy dll unloading
32 test(l.Connect()==KErrNone);
33 test(l.CancelLazyDllUnload()==KErrNone);
36 test.Start(_L("Preload t_oedll1.dll"));
38 test(library.Load(_L("t_oedll1.dll")) == KErrNone);
40 test.Next(_L("Run T_OEEXPORT.EXE..."));
42 TInt r=p.Create(_L("T_OEEXPORT.EXE"), _L("2"));
47 User::WaitForRequest(s);
48 TExitCategoryName aExitCategory = p.ExitCategory();
49 test.Printf(_L("Second test exits with: %d,%d,%S\n"),p.ExitType(),p.ExitReason(),&aExitCategory);
50 test(p.ExitType()==EExitKill);
51 test(p.ExitReason()==0);