]> git.proxmox.com Git - ceph.git/blame - ceph/src/rocksdb/arcanist_util/unit_engine/FacebookOldFbcodeUnitTestEngine.php
bump version to 12.2.12-pve1
[ceph.git] / ceph / src / rocksdb / arcanist_util / unit_engine / FacebookOldFbcodeUnitTestEngine.php
CommitLineData
7c673cae
FG
1<?php
2// Copyright 2004-present Facebook. All Rights Reserved.
3// This source code is licensed under the BSD-style license found in the
4// LICENSE file in the root directory of this source tree. An additional grant
5// of patent rights can be found in the PATENTS file in the same directory.
6
7class FacebookFbcodeUnitTestEngine extends ArcanistBaseUnitTestEngine {
8
9 public function run() {
10 // For a call to `arc call-conduit differential.updateunitresults` to
11 // succeed we need at least one entry here.
12 $result = new ArcanistUnitTestResult();
13 $result->setName("dummy_placeholder_entry");
14 $result->setResult(ArcanistUnitTestResult::RESULT_PASS);
15 return array($result);
16 }
17}