MLCE-52 Where has PROFILING gone?

* Call the Print() function on the Profiler when profiling is enabled.

Change-Id: I4c06ce9bfa961ac8d81d02a516502337d1fbc968
diff --git a/tests/InferenceTest.cpp b/tests/InferenceTest.cpp
index f9a3c68..8733bc5 100644
--- a/tests/InferenceTest.cpp
+++ b/tests/InferenceTest.cpp
@@ -231,6 +231,12 @@
     BOOST_LOG_TRIVIAL(info) << std::fixed << std::setprecision(3) <<
         "Average time per test case: " << averageTimePerTestCaseMs << " ms";
 
+    // if profiling is enabled print out the results
+    if (profiler && profiler->IsProfilingEnabled())
+    {
+        profiler->Print(std::cout);
+    }
+
     if (!success)
     {
         BOOST_LOG_TRIVIAL(error) << "One or more test cases failed";