summaryrefslogtreecommitdiff
path: root/elf
diff options
context:
space:
mode:
authorArjun Shankar <arjun.is@lostca.se>2015-08-03 16:14:21 +0000
committerMike Frysinger <vapier@gentoo.org>2015-08-06 02:59:04 -0400
commitc1f4108352e446285e99f046e3929ed13d5e9851 (patch)
tree6f9e0d7e91314c36593a92f7a0f11cb14839e04f /elf
parenta03ba3630548d74920884dd12442d9937ad47072 (diff)
Modify several tests to use test-skeleton.c
These tests were skipped by the use-test-skeleton conversion done in commit 29955b5d because they did not have an `int main (void)' declaration. Instead their `main' functions were declared with arguments (i.e. argc, argv) even though they didn't use them. Remove these arguments and include the test skeleton in these tests.
Diffstat (limited to 'elf')
-rw-r--r--elf/tst-dlmodcount.c7
-rw-r--r--elf/tst-order-main.c7
-rw-r--r--elf/tst-pie2.c7
3 files changed, 15 insertions, 6 deletions
diff --git a/elf/tst-dlmodcount.c b/elf/tst-dlmodcount.c
index 64df2fa18a..6cfa366836 100644
--- a/elf/tst-dlmodcount.c
+++ b/elf/tst-dlmodcount.c
@@ -92,8 +92,8 @@ unload (const char *path, void *handle)
dl_iterate_phdr (callback, (void *)(intptr_t) REMOVE);
}
-int
-main (int argc, char **argv)
+static int
+do_test (void)
{
void *handle1, *handle2;
@@ -104,3 +104,6 @@ main (int argc, char **argv)
unload ("globalmod1.so", handle2);
return 0;
}
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"
diff --git a/elf/tst-order-main.c b/elf/tst-order-main.c
index 80f4f6be18..339778a93a 100644
--- a/elf/tst-order-main.c
+++ b/elf/tst-order-main.c
@@ -2,9 +2,12 @@
#include <unistd.h>
#include <stdlib.h>
-int
-main( int argc, char *argv[] )
+static int
+do_test (void)
{
printf( "main\n" );
exit(EXIT_SUCCESS);
}
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"
diff --git a/elf/tst-pie2.c b/elf/tst-pie2.c
index b76b3236e4..a22fc521bc 100644
--- a/elf/tst-pie2.c
+++ b/elf/tst-pie2.c
@@ -31,8 +31,11 @@ init_g (void)
g += 1;
}
-int
-main (int argc, char *argv[])
+static int
+do_test (void)
{
return 0;
}
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"