about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCarlos O'Donell <carlos@redhat.com>2024-08-15 08:12:35 -0400
committerCarlos O'Donell <carlos@redhat.com>2024-08-15 15:28:48 -0400
commitb22923abb046311ac9097a36b97b9b97342bac44 (patch)
treed25c3a010ffb2bde606298b8fca1242a46fceda0
parent3e1d8d1d1dca24ae90df2ea826a8916896fc7e77 (diff)
downloadglibc-b22923abb046311ac9097a36b97b9b97342bac44.tar.gz
glibc-b22923abb046311ac9097a36b97b9b97342bac44.tar.xz
glibc-b22923abb046311ac9097a36b97b9b97342bac44.zip
Report error if setaffinity wrapper fails (Bug 32040)
Previously if the setaffinity wrapper failed the rest of the subtest
would not execute and the current subtest would be reported as passing.
Now if the setaffinity wrapper fails the subtest is correctly reported
as faling. Tested manually by changing the conditions of the affinity
call including setting size to zero, or checking the wrong condition.

No regressions on x86_64.

Reviewed-by: Florian Weimer <fweimer@redhat.com>
-rw-r--r--sysdeps/unix/sysv/linux/tst-skeleton-affinity.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/tst-skeleton-affinity.c b/sysdeps/unix/sysv/linux/tst-skeleton-affinity.c
index 31a15b3ad7..2f921ed397 100644
--- a/sysdeps/unix/sysv/linux/tst-skeleton-affinity.c
+++ b/sysdeps/unix/sysv/linux/tst-skeleton-affinity.c
@@ -157,7 +157,7 @@ test_size (const struct conf *conf, size_t size)
   if (setaffinity (kernel_size, initial_set) < 0)
     {
       printf ("error: size %zu: setaffinity: %m\n", size);
-      return true;
+      return false;
     }
 
   /* Use one-CPU set to test switching between CPUs.  */