Home | History | Annotate | Download | only in launcher
      1 // Copyright 2013 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #include "base/test/launcher/unit_test_launcher.h"
      6 
      7 namespace base {
      8 
      9 int LaunchUnitTests(int argc,
     10                     char** argv,
     11                     const RunTestSuiteCallback& run_test_suite) {
     12   // Stub implementation - iOS doesn't support features we need for
     13   // the full test launcher (e.g. process_util).
     14   return run_test_suite.Run();
     15 }
     16 
     17 }  // namespace base
     18