* [LTP] [Patch 4/4] KSM test case fixes - oom01 and oom03
@ 2011-09-05 10:17 Nageswara R Sastry
0 siblings, 0 replies; only message in thread
From: Nageswara R Sastry @ 2011-09-05 10:17 UTC (permalink / raw)
To: ltp-list
[-- Attachment #1: Type: text/plain, Size: 1113 bytes --]
Before testing 'oom' with KSM pages - checking whether ksm related
directory exists in sysfs or not.
oom01:
Before the patch:
...
oom01 0 TINFO : start OOM testing for KSM pages.
oom01 0 TINFO : allocating 3221225472 bytes.
oom01 1 TBROK : madvise: errno=EINVAL(22): Invalid argument
oom01 2 TBROK : Remaining cases broken
...
After the patch:
...
oom01 1 TCONF : KSM configuration is not enabled
oom01 2 TCONF : Remaining cases not appropriate for configuration
...
oom03
Before the patch:
...
oom03 0 TINFO : start OOM testing for KSM pages.
oom03 0 TINFO : expected victim is 46162.
oom03 1 TFAIL : the victim unexpectedly failed: 512
oom03 2 TBROK : open 46159: errno=ENOENT(2): No such file or
directory
oom03 3 TBROK : Remaining cases broken
...
After the patch:
...
oom03 1 TCONF : KSM configuration is not enabled
oom03 2 TCONF : Remaining cases not appropriate for configuration
...
Signed-off-by: Nageswara R Sastry <rnsastry@linux.vnet.ibm.com>
--
Regards
R.Nageswara Sastry
[-- Attachment #2: mem.patch --]
[-- Type: text/plain, Size: 576 bytes --]
--- ltp.orig/testcases/kernel/mem/lib/mem.c 2011-09-05 08:42:12.000000000 +0200
+++ ltp/testcases/kernel/mem/lib/mem.c 2011-09-05 08:50:27.000000000 +0200
@@ -139,6 +139,11 @@ void testoom(int mempolicy, int lite, in
tst_resm(TINFO, "start OOM testing for mlocked pages.");
oom(MLOCK, mempolicy, lite);
+ char *fname = "/sys/kernel/mm/ksm/";
+ if( access( fname, F_OK ) == -1 ) {
+ tst_brkm(TCONF, NULL, "KSM configuration is not enabled");
+ }
+
tst_resm(TINFO, "start OOM testing for KSM pages.");
oom(KSM, mempolicy, lite);
}
[-- Attachment #3: Type: text/plain, Size: 357 bytes --]
------------------------------------------------------------------------------
Special Offer -- Download ArcSight Logger for FREE!
Finally, a world-class log management solution at an even better
price-free! And you'll get a free "Love Thy Logs" t-shirt when you
download Logger. Secure your free ArcSight Logger TODAY!
http://p.sf.net/sfu/arcsisghtdev2dev
[-- Attachment #4: Type: text/plain, Size: 155 bytes --]
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-09-05 10:17 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-05 10:17 [LTP] [Patch 4/4] KSM test case fixes - oom01 and oom03 Nageswara R Sastry
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox