diff options
author | Tom Tromey <tom@tromey.com> | 2016-09-22 21:32:03 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2016-10-12 19:43:16 -0600 |
commit | 816d7b53047bca81c226990bc9248d59d80d4b8b (patch) | |
tree | 6ce4862146d591338a8f9c33375bff4c9bc0b24c /gdb/selftest.c | |
parent | bfd282882d534cd4f48e2fc29d4ce0923c52352b (diff) | |
download | gdb-816d7b53047bca81c226990bc9248d59d80d4b8b.zip gdb-816d7b53047bca81c226990bc9248d59d80d4b8b.tar.gz gdb-816d7b53047bca81c226990bc9248d59d80d4b8b.tar.bz2 |
Change selttest.c to use use std::vector
This patch changes selftest.c to use std::vector rather than VEC.
I think this is a small net plus.
2016-10-12 Tom Tromey <tom@tromey.com>
* selftest.c: Include <vector>, not "vec.h".
(self_test_function_ptr): Remove.
(tests): Now a std::vector.
(register_self_test, run_self_tests): Update.
Diffstat (limited to 'gdb/selftest.c')
-rw-r--r-- | gdb/selftest.c | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/gdb/selftest.c b/gdb/selftest.c index c63c06d..110b9e5 100644 --- a/gdb/selftest.c +++ b/gdb/selftest.c @@ -18,22 +18,18 @@ #include "defs.h" #include "selftest.h" -#include "vec.h" - -typedef self_test_function *self_test_function_ptr; - -DEF_VEC_P (self_test_function_ptr); +#include <vector> /* All the tests that have been registered. */ -static VEC (self_test_function_ptr) *tests; +static std::vector<self_test_function *> tests; /* See selftest.h. */ void register_self_test (self_test_function *function) { - VEC_safe_push (self_test_function_ptr, tests, function); + tests.push_back (function); } /* See selftest.h. */ @@ -41,17 +37,15 @@ register_self_test (self_test_function *function) void run_self_tests (void) { - int i; - self_test_function_ptr func; int failed = 0; - for (i = 0; VEC_iterate (self_test_function_ptr, tests, i, func); ++i) + for (int i = 0; i < tests.size (); ++i) { QUIT; TRY { - (*func) (); + tests[i] (); } CATCH (ex, RETURN_MASK_ERROR) { @@ -62,6 +56,6 @@ run_self_tests (void) END_CATCH } - printf_filtered (_("Ran %u unit tests, %d failed\n"), - VEC_length (self_test_function_ptr, tests), failed); + printf_filtered (_("Ran %lu unit tests, %d failed\n"), + (long) tests.size (), failed); } |