--- a/kerneltest/e32test/notifier/t_textnotifier.cpp Thu Aug 19 11:14:22 2010 +0300
+++ b/kerneltest/e32test/notifier/t_textnotifier.cpp Tue Aug 31 16:34:26 2010 +0300
@@ -83,7 +83,16 @@
User::WaitForRequest(stat);
n.CancelNotifier(aUid);
test(stat==heapCellCount);
- test(heapInfo1==heapInfo2);
+
+ TInt size1, size2;
+ TLex8 lex(heapInfo1);
+ r = lex.Val(size1);
+ test(r==KErrNone);
+ lex.Assign(heapInfo2);
+ r = lex.Val(size2);
+ test(r==KErrNone);
+ //allocated size after should not be greater than before BUT may be less with new allocator
+ test(size2 <= size1);
test.Next(_L("Close connection to notifier server"));
n.Close();