summaryrefslogtreecommitdiff
path: root/tools/kbenchmark/Driver.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/kbenchmark/Driver.cc')
-rw-r--r--tools/kbenchmark/Driver.cc40
1 files changed, 40 insertions, 0 deletions
diff --git a/tools/kbenchmark/Driver.cc b/tools/kbenchmark/Driver.cc
new file mode 100644
index 000000000..c2cc33454
--- /dev/null
+++ b/tools/kbenchmark/Driver.cc
@@ -0,0 +1,40 @@
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "Args.h"
+
+#include <iostream>
+#include <string>
+
+using namespace kbenchmark;
+
+int main(int argc, char *argv[])
+{
+ Args args(argc, argv);
+
+ // Set default test name
+ std::string config_name{args.config()};
+ config_name = config_name.substr(config_name.find_last_of("/") + 1);
+ config_name = config_name.substr(0, config_name.find_last_of("."));
+ std::string test_name{"test_benchmark_" + config_name};
+ if (!args.output().empty())
+ {
+ test_name += (std::string{"_"} + args.output());
+ }
+ std::cout << "Benchmark test name\n " << test_name << std::endl;
+
+ return 0;
+}