70 lines
2.1 KiB
PHP
70 lines
2.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
Phoronix Test Suite
|
|
URLs: http://www.phoronix.com, http://www.phoronix-test-suite.com/
|
|
Copyright (C) 2011 - 2020, Phoronix Media
|
|
Copyright (C) 2011 - 2020, Michael Larabel
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
class dump_openbenchmarking_indexes implements pts_option_interface
|
|
{
|
|
const doc_section = 'Debugging';
|
|
const doc_description = 'This option is used for dumping the parsed output of OpenBenchmarking.org index files (metadata).';
|
|
public static function run($r)
|
|
{
|
|
echo PHP_EOL . 'OpenBenchmarking.org Repositories:' . PHP_EOL . PHP_EOL;
|
|
|
|
foreach(pts_openbenchmarking::linked_repositories() as $repo)
|
|
{
|
|
if($repo == 'local')
|
|
{
|
|
// Skip local since it's a fake repository
|
|
continue;
|
|
}
|
|
|
|
$repo_index = pts_openbenchmarking::read_repository_index($repo);
|
|
$generated_time = date('F d H:i', $repo_index['main']['generated']);
|
|
|
|
$tab = ' ';
|
|
foreach(array('tests', 'suites') as $t)
|
|
{
|
|
echo PHP_EOL . str_repeat('=', 40) . PHP_EOL . strtoupper($repo . ' ' . $t) . PHP_EOL . 'Generated: ' . $generated_time . PHP_EOL . str_repeat('=', 40) . PHP_EOL . PHP_EOL;
|
|
foreach($repo_index[$t] as $identifier => $test)
|
|
{
|
|
echo 'Identifier: ' . $identifier . PHP_EOL;
|
|
$table = array();
|
|
foreach($test as $i => $j)
|
|
{
|
|
if(is_array($j))
|
|
{
|
|
$table[] = array($i . ': ', implode(', ', $j));
|
|
}
|
|
else
|
|
{
|
|
$table[] = array($i . ': ', trim($j));
|
|
}
|
|
}
|
|
echo pts_user_io::display_text_table($table) . PHP_EOL;
|
|
echo PHP_EOL;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
?>
|