diff options
author | Florian Weimer <fweimer@redhat.com> | 2018-12-06 15:39:42 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2018-12-06 15:39:42 +0100 |
commit | f255336a9301619519045548acb2e1027065a837 (patch) | |
tree | 7b0774eba027b876db3c6242c5ac5a3f92f357b4 /support/check.h | |
parent | 35caceb145ff23340edcd67dd813bfd95f1ff6e6 (diff) | |
download | glibc-f255336a9301619519045548acb2e1027065a837.tar.gz glibc-f255336a9301619519045548acb2e1027065a837.tar.xz glibc-f255336a9301619519045548acb2e1027065a837.zip |
support: Implement <support/descriptors.h> to track file descriptors
Diffstat (limited to 'support/check.h')
-rw-r--r-- | support/check.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/support/check.h b/support/check.h index e6765289f2..7ea9a86a9c 100644 --- a/support/check.h +++ b/support/check.h @@ -183,6 +183,10 @@ int support_report_failure (int status) /* Internal function used to test the failure recording framework. */ void support_record_failure_reset (void); +/* Returns true or false depending on whether there have been test + failures or not. */ +int support_record_failure_is_failed (void); + __END_DECLS #endif /* SUPPORT_CHECK_H */ |