aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/Utils.cpp35
-rw-r--r--utils/Utils.h17
2 files changed, 0 insertions, 52 deletions
diff --git a/utils/Utils.cpp b/utils/Utils.cpp
index c2f5449a28..32d5e3a6c0 100644
--- a/utils/Utils.cpp
+++ b/utils/Utils.cpp
@@ -66,41 +66,6 @@ void discard_comments_and_spaces(std::ifstream &fs)
}
} // namespace
-//FIXME: Delete once tests have been ported (COMPMID-782)
-int run_example(int argc, char **argv, example &func)
-{
- std::cout << "\n"
- << argv[0] << "\n\n";
-
- try
- {
- func(argc, argv);
-
- std::cout << "\nTest passed\n";
- return 0;
- }
-#ifdef ARM_COMPUTE_CL
- catch(cl::Error &err)
- {
- std::cerr << "!!!!!!!!!!!!!!!!!!!!!!!!!!!" << std::endl;
- std::cerr << std::endl
- << "ERROR " << err.what() << "(" << err.err() << ")" << std::endl;
- std::cerr << "!!!!!!!!!!!!!!!!!!!!!!!!!!!" << std::endl;
- }
-#endif /* ARM_COMPUTE_CL */
- catch(std::runtime_error &err)
- {
- std::cerr << "!!!!!!!!!!!!!!!!!!!!!!!!!!!" << std::endl;
- std::cerr << std::endl
- << "ERROR " << err.what() << " " << (errno ? strerror(errno) : "") << std::endl;
- std::cerr << "!!!!!!!!!!!!!!!!!!!!!!!!!!!" << std::endl;
- }
-
- std::cout << "\nTest FAILED\n";
-
- return -1;
-}
-
#ifndef BENCHMARK_EXAMPLES
int run_example(int argc, char **argv, Example &example)
{
diff --git a/utils/Utils.h b/utils/Utils.h
index 9b5d0c4aa9..01e5137669 100644
--- a/utils/Utils.h
+++ b/utils/Utils.h
@@ -55,23 +55,6 @@ namespace arm_compute
{
namespace utils
{
-//FIXME: Delete once tests have been ported (COMPMID-782)
-/** Signature of an example to run
- *
- * @param[in] argc Number of command line arguments
- * @param[in] argv Command line arguments
- */
-using example = void(int argc, char **argv);
-
-//FIXME: Delete once tests have been ported (COMPMID-782)
-/** Run an example and handle the potential exceptions it throws
- *
- * @param[in] argc Number of command line arguments
- * @param[in] argv Command line arguments
- * @param[in] func Pointer to the function containing the code to run
- */
-int run_example(int argc, char **argv, example &func);
-
/** Abstract Example class.
*
* All examples have to inherit from this class.