From 9fb0cac961f70d1937c5fa3eafeaee1385c89768 Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Fri, 20 Apr 2018 15:46:21 +0100 Subject: COMPMID-1081: Introduced test-wide instruments Change-Id: I5831241f3fc503717cc51136453c2bf96d4b420b Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/128484 Tested-by: Jenkins Reviewed-by: Georgios Pinitas --- utils/Utils.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'utils/Utils.cpp') diff --git a/utils/Utils.cpp b/utils/Utils.cpp index 8a2d11814e..a5c6a95a2a 100644 --- a/utils/Utils.cpp +++ b/utils/Utils.cpp @@ -67,16 +67,16 @@ void discard_comments_and_spaces(std::ifstream &fs) } // namespace #ifndef BENCHMARK_EXAMPLES -int run_example(int argc, char **argv, Example &example) +int run_example(int argc, char **argv, std::unique_ptr example) { std::cout << "\n" << argv[0] << "\n\n"; try { - example.do_setup(argc, argv); - example.do_run(); - example.do_teardown(); + example->do_setup(argc, argv); + example->do_run(); + example->do_teardown(); std::cout << "\nTest passed\n"; return 0; -- cgit v1.2.1