This file is indexed.

/usr/share/phoronix-test-suite/pts-core/objects/pts_merge.php is in phoronix-test-suite 4.8.3-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php

/*
	Phoronix Test Suite
	URLs: http://www.phoronix.com, http://www.phoronix-test-suite.com/
	Copyright (C) 2008 - 2012, Phoronix Media
	Copyright (C) 2008 - 2012, 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 pts_merge
{
	public static function merge_test_results_array($files_to_combine, $pass_attributes = null)
	{
		$result_file_writer = new pts_result_file_writer();
		self::merge_test_results_process($result_file_writer, $files_to_combine, $pass_attributes);

		return $result_file_writer->get_xml();
	}
	public static function merge_test_results()
	{
		// Merge test results
		// Pass the result file names/paths for each test result file to merge as each as a parameter of the array
		$files_to_combine = func_get_args();
		return self::merge_test_results_array($files_to_combine);
	}
	public static function merge_test_results_process(&$result_file_writer, &$files_to_combine, $pass_attributes = null)
	{
		$test_result_manager = new pts_result_file_merge_manager($pass_attributes);
		$has_written_suite_info = false;

		foreach($files_to_combine as &$file)
		{
			if(is_object($file) && $file instanceof pts_result_merge_select)
			{
				$result_merge_select = $file;
				$this_result_file = $result_merge_select->get_result_file();

				if(($this_result_file instanceof pts_result_file) == false)
				{
					$this_result_file = new pts_result_file($this_result_file);
				}
			}
			else if(is_object($file) && $file instanceof pts_result_file)
			{
				if(($t = $file->read_extra_attribute('rename_result_identifier')) != false)
				{
					// This code path is currently used by Phoromatic
					$result_merge_select = new pts_result_merge_select(null, null);
					$result_merge_select->rename_identifier($t);
				}
				else
				{
					$result_merge_select = null;
				}

				$this_result_file = $file;
			}
			else
			{
				$result_merge_select = new pts_result_merge_select($file, null);
				$this_result_file = new pts_result_file($result_merge_select->get_result_file());
			}

			if($this_result_file->get_test_count() == 0)
			{
				// Why print the system information if there are no contained results?
				continue;
			}

			if(!isset($pass_attributes['only_render_results_xml']))
			{
				if($has_written_suite_info == false)
				{
					$result_file_writer->add_result_file_meta_data($this_result_file);
					$has_written_suite_info = true;
				}

				$result_file_writer->add_system_information_from_result_file($this_result_file, $result_merge_select);
			}

			$test_result_manager->add_test_result_set($this_result_file->get_result_objects(), $result_merge_select);
		}

		// Write the actual test results
		$result_file_writer->add_results_from_result_manager($test_result_manager);
	}
	public static function generate_analytical_batch_xml($analyze_file)
	{
		if(($analyze_file instanceof pts_result_file) == false)
		{
			$analyze_file = new pts_result_file($analyze_file);
		}

		$result_file_writer = new pts_result_file_writer();

		$result_file_writer->add_result_file_meta_data($analyze_file);
		$result_file_writer->add_system_information_from_result_file($analyze_file);

		$test_result_manager = new pts_result_file_analyze_manager();
		$test_result_manager->add_test_result_set($analyze_file->get_result_objects());
		$result_file_writer->add_results_from_result_manager($test_result_manager);
		unset($test_result_manager);

		return $result_file_writer->get_xml();
	}
}

?>