aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNaoya Horiguchi <[n-horiguchi@ah.jp.nec.com]>2009-10-28 11:25:37 +0100
committerAndi Kleen <ak@linux.intel.com>2009-10-28 11:26:11 +0100
commit650f087800a57018ff1d33d1a2cb217f879cf749 (patch)
tree0a2d90074c542d0f3ed283d569f1f61ce416d851
parent439152f8dd222d23d5aa85bbdedf0ad849bb64e3 (diff)
downloadmce-test-650f087800a57018ff1d33d1a2cb217f879cf749.tar.gz
tinjpage: add status printf to second test loop
Signed-off-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> Signed-off-by: Andi Kleen <ak@linux.intel.com>
-rw-r--r--tsrc/tinjpage.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tsrc/tinjpage.c b/tsrc/tinjpage.c
index 248bca0..bb2493c 100644
--- a/tsrc/tinjpage.c
+++ b/tsrc/tinjpage.c
@@ -764,8 +764,10 @@ int main(int ac, char **av)
system("sysctl -w vm.memory_failure_early_kill=1");
sigaction(SIGBUS, &sa, NULL);
- for (t = cases; t->f; t++)
+ for (t = cases; t->f; t++) {
+ printf("---- testing %s (early kill)\n", t->name);
t->f();
+ }
if (failure > 0) {
printf("FAILURE -- %d cases broken!\n", failure);