aboutsummaryrefslogtreecommitdiff
path: root/tests/profiling/GatordMockMain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/profiling/GatordMockMain.cpp')
-rw-r--r--tests/profiling/GatordMockMain.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/profiling/GatordMockMain.cpp b/tests/profiling/GatordMockMain.cpp
new file mode 100644
index 0000000000..91fa907795
--- /dev/null
+++ b/tests/profiling/GatordMockMain.cpp
@@ -0,0 +1,18 @@
+//
+// Copyright © 2019 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#include "CommandLineProcessor.hpp"
+
+#include <cstdlib>
+
+int main(int argc, char *argv[])
+{
+ armnn::gatordmock::CommandLineProcessor cmdline;
+ if (!cmdline.ProcessCommandLine(argc, argv))
+ {
+ return EXIT_FAILURE;
+ }
+ return EXIT_SUCCESS;
+}