aboutsummaryrefslogtreecommitdiff
path: root/gdb/selftest.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/selftest.c')
-rw-r--r--gdb/selftest.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/gdb/selftest.c b/gdb/selftest.c
index 14b76f6..31d16af 100644
--- a/gdb/selftest.c
+++ b/gdb/selftest.c
@@ -20,6 +20,9 @@
#include "selftest.h"
#include <vector>
+namespace selftests
+{
+
/* All the tests that have been registered. */
static std::vector<self_test_function *> tests;
@@ -27,7 +30,7 @@ static std::vector<self_test_function *> tests;
/* See selftest.h. */
void
-register_self_test (self_test_function *function)
+register_test (self_test_function *function)
{
tests.push_back (function);
}
@@ -35,7 +38,7 @@ register_self_test (self_test_function *function)
/* See selftest.h. */
void
-run_self_tests (void)
+run_tests (void)
{
int failed = 0;
@@ -62,3 +65,4 @@ run_self_tests (void)
printf_filtered (_("Ran %lu unit tests, %d failed\n"),
(long) tests.size (), failed);
}
+} // namespace selftests