Fail with TCONF on all 32-bit archs.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
diff --git a/testcases/kernel/mem/oom/oom02.c b/testcases/kernel/mem/oom/oom02.c
index 24cfe51..71305c7 100644
--- a/testcases/kernel/mem/oom/oom02.c
+++ b/testcases/kernel/mem/oom/oom02.c
@@ -56,9 +56,8 @@
 		tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
 
 #ifdef __WORDSIZE == 32
-	tst_brkm(TCONF, NULL,
-		"this test is not designed for 32-bit system.");
-#endif /* __i386__ */
+	tst_brkm(TCONF, NULL, "test is not designed for 32-bit system.");
+#endif
 
 	nnodes = count_numa();
 	if (count_numa() == 1)
@@ -76,10 +75,10 @@
 		close(fd);
 
 		tst_resm(TINFO, "process mempolicy.");
-		testoom(1, 0);
+		testoom(1, 0, 1);
 
 		tst_resm(TINFO, "process cpuset.");
-		testoom(0, 0);
+		testoom(0, 0, 1);
 	}
 	cleanup();
 }