diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2015-07-16 10:38:29 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2015-07-16 10:38:29 +0530 |
commit | e591758b38a606f6197cfdd0f8382fa8397b5e77 (patch) | |
tree | a0e6cb49796002fbc3660aed9a4a58e85fb91779 | |
parent | 9ceb5f6251fa0c0de5304e081e979b3f855148ed (diff) | |
download | glibc-e591758b38a606f6197cfdd0f8382fa8397b5e77.tar.gz glibc-e591758b38a606f6197cfdd0f8382fa8397b5e77.tar.xz glibc-e591758b38a606f6197cfdd0f8382fa8397b5e77.zip |
Add comment to clarify how the test can fail
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | elf/tst-nodelete-opened.c | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 665f5ccabd..34b31281ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2015-07-16 Siddhesh Poyarekar <siddhesh@redhat.com> + * tst-nodelete-opened.c (do_test): Add comment to clarify how + the test can fail. + * stdlib/cxa_thread_atexit_impl.c: Whitespace fixup. [BZ #18676] diff --git a/elf/tst-nodelete-opened.c b/elf/tst-nodelete-opened.c index 43b00fa16d..501d005f81 100644 --- a/elf/tst-nodelete-opened.c +++ b/elf/tst-nodelete-opened.c @@ -58,6 +58,8 @@ do_test (void) return 1; } + /* This FOO dereference will crash with a segfault if the DSO was + unloaded. */ printf ("foo == %d\n", *foo); return 0; |