From d4f5ca83a945859800cfd478f93072e9f47a7191 Mon Sep 17 00:00:00 2001 From: toole1 <toole1@6fbd10e7-183d-0410-a318-cb416676e4f2> Date: Sat, 23 Jul 2011 06:18:23 +0000 Subject: [PATCH] oops fixed git-svn-id: https://subversion.cs.illinois.edu/svn/cs225@3380 6fbd10e7-183d-0410-a318-cb416676e4f2 --- proxy.cpp | 2 +- proxy.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/proxy.cpp b/proxy.cpp index 03dbfa0..f6bc86a 100755 --- a/proxy.cpp +++ b/proxy.cpp @@ -458,7 +458,7 @@ void test_execution::aborted_exit() } -bool RunTests::execute_test(unit_test & _test, RunTimeEnvironment & environment, bool enable_valgrind_call) +bool RunTests::execute_test(unit_test & test, RunTimeEnvironment & environment, bool enable_valgrind_call) { cout << std::flush; test_execution executor(test, environment, enable_valgrind_call); diff --git a/proxy.h b/proxy.h index 461437f..7371783 100755 --- a/proxy.h +++ b/proxy.h @@ -106,7 +106,7 @@ namespace proxy void output_detailed_info_if_any_failed(int32_t score); void output_detailed_tests_info(int32_t score); - execute_test(unit_test & _test, RunTimeEnvironment & env, bool enable_valgrind_call); + bool execute_test(unit_test & test, RunTimeEnvironment & environment, bool enable_valgrind_call); private: RunTests(const RunTests & other); -- GitLab