2014-03-24 Paul Pluzhnikov <ppluzhnikov@google.com>
* elf/tst-dlopen-aout.c: Adjust comments. Use test-skeleton.c
+2014-03-24 Paul Pluzhnikov <ppluzhnikov@google.com>
+
+ * elf/tst-dlopen-aout.c: Adjust comments. Use test-skeleton.c
+
2014-03-24 Joseph Myers <joseph@codesourcery.com>
* sysdeps/ieee754/dbl-64/e_exp.c: Include <math.h>.
2014-03-24 Paul Pluzhnikov <ppluzhnikov@google.com>
[BZ #16634]
-
* elf/dl-load.c (open_verify): Add mode parameter.
Error early when ET_EXEC and mode does not have __RTLD_OPENEXEC.
(open_path): Change from boolean 'secure' to complete flag 'mode'
/* Test case for BZ #16634.
+ Verify that incorrectly dlopen()ing an executable without
+ __RTLD_OPENEXEC does not cause assertion in ld.so.
+
Copyright (C) 2014 Free Software Foundation, Inc.
This file is part of the GNU C Library.
return p;
}
-int
-main (int argc, char *argv[])
+static int
+do_test (int argc, char *argv[])
{
int j;
return 0;
}
+
+#define TEST_FUNCTION do_test (argc, argv)
+#include "../test-skeleton.c"