mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-01 10:20:58 +01:00
a3e29773df
Summary: Ref T13098. Makes some tests pass by updating `'phutil'` to `'arcanist'`. Skips some tests which won't pass for a while. Also removes external test engines for now since they aren't realistically going to run for a while and they significantly complicate bootstrapping a set of passing tests out of `arc unit`. Test Plan: Ran `arc unit`, saw fewer failures. Reviewers: amckinley Reviewed By: amckinley Subscribers: aurelijus Maniphest Tasks: T13098 Differential Revision: https://secure.phabricator.com/D19714
10 lines
275 B
PHP
Executable file
10 lines
275 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
$arcanist_root = dirname(dirname(dirname(__FILE__)));
|
|
require_once $arcanist_root.'/scripts/init/init-script.php';
|
|
|
|
$logs = array();
|
|
for ($ii = 0; $ii < $argv[1]; $ii++) {
|
|
$logs[] = new PhutilDeferredLog($argv[2], 'abcdefghijklmnopqrstuvwxyz');
|
|
}
|