[OpenMP][AIX] XFAIL capacity tests on AIX in 32-bit (#83014)

This patch XFAILs two capacity tests on AIX in 32-bit because running
out resource with `4 x omp_get_max_threads()` in 32-bit mode.

GitOrigin-RevId: a4dcfbcb786f69ab8bab35f41e725e592fbac3fb
diff --git a/runtime/test/tasking/hidden_helper_task/capacity_mix_threads.cpp b/runtime/test/tasking/hidden_helper_task/capacity_mix_threads.cpp
index 776aee9..3f2ceef 100644
--- a/runtime/test/tasking/hidden_helper_task/capacity_mix_threads.cpp
+++ b/runtime/test/tasking/hidden_helper_task/capacity_mix_threads.cpp
@@ -1,4 +1,7 @@
 // RUN: %libomp-cxx-compile-and-run
+//
+// AIX runs out of resource in 32-bit with 4*omp_get_max_threads() threads.
+// XFAIL: aix && ppc
 
 #include <omp.h>
 
diff --git a/runtime/test/tasking/hidden_helper_task/capacity_nthreads.cpp b/runtime/test/tasking/hidden_helper_task/capacity_nthreads.cpp
index b551318..f7405d0 100644
--- a/runtime/test/tasking/hidden_helper_task/capacity_nthreads.cpp
+++ b/runtime/test/tasking/hidden_helper_task/capacity_nthreads.cpp
@@ -1,4 +1,7 @@
 // RUN: %libomp-cxx-compile-and-run
+//
+// AIX runs out of resource in 32-bit with 4*omp_get_max_threads() threads.
+// XFAIL: aix && ppc
 
 #include <omp.h>