Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Unified Diff: tests/benchmark/benchmark_chameneos.cc

Issue 993003004: Delete flaky benchmark test (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Fix dependencies. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/benchmark/benchmark_binarytrees_c.c ('k') | tests/benchmark/benchmark_chameneos_c.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/benchmark/benchmark_chameneos.cc
diff --git a/tests/benchmark/benchmark_chameneos.cc b/tests/benchmark/benchmark_chameneos.cc
deleted file mode 100644
index e73032c18a354dfb553ad2edee98bae41a833b03..0000000000000000000000000000000000000000
--- a/tests/benchmark/benchmark_chameneos.cc
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2014 The Native Client Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include <stdint.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-
-#include <string>
-
-// @EXEMPTION[include]
-#include "./framework.h"
-
-extern "C" {
- int main_chameneos(int argc, const char* argv[]);
-}
-
-namespace {
-
-// Wrap Chameneos in benchmark harness
-class BenchmarkChameneos : public Benchmark {
- public:
- virtual int Run() {
- const char *args[] = {"chameneos", "60000"};
- return main_chameneos(2, args);
- }
- virtual const std::string Name() { return "Chameneos"; }
- virtual const std::string Notes() { return "c #2 version"; }
-};
-
-} // namespace
-
-// Register an instance to the list of benchmarks to be run.
-RegisterBenchmark<BenchmarkChameneos> benchmark_chameneos;
« no previous file with comments | « tests/benchmark/benchmark_binarytrees_c.c ('k') | tests/benchmark/benchmark_chameneos_c.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698