Summary
Description: Unnamed repository; edit this file to name it for gitweb.
Last Change: Wed 2/3/10 13:04
Recent Commits
>
--git a/pts-core/library/pts-functions_global.php b/pts-core/library/pts-functions_global.php
index ef25b8b..72c69eb 100644
--- a/pts-core/library/pts-functions_global.php
+++ b/pts-core/library/pts-functions_global.php
@@ -100,7 +100,7 @@ function pts_global_upload_usage_data($task, $data)
}
function pts_global_upload_result($result_file, $tags = "")
{
- if(!pts_global_allow_upload($use_file))
+ if(!pts_global_allow_upload($result_file))
{
return false;
}
diff --git a/pts-core/objects/display_modes/pts_concise_display_mode.php b/pts-core/objects/display_modes/pts_concise_display_mode.php
index 5efebdc..96437cb 100644
--- a/pts-core/objects/display_modes/pts_concise_display_mode.php
+++ b/pts-core/objects/display_modes/pts_concise_display_mode.php
@@ -49,7 +49,7 @@ class pts_concise_display_mode implements pts_display_mode_interface
}
public function test_install_downloads($identifier, &$download_packages)
{
- echo "\t\t" . count($download_packages) . " File" . (isset($download_packages[1]) ? "s" : "") . " To Download";
+ echo "\t\t" . count($download_packages) . " File" . (isset($download_packages[1]) ? "s" : "") . " Needed";
if(($size = pts_estimated_download_size($identifier)) > 0)
{
@@ -105,7 +105,7 @@ class pts_concise_display_mode implements pts_display_mode_interface
}
public function test_run_start(&$test_result)
{
- echo "\n" . $test_result->get_attribute("TEST_TITLE") . ":\n\t" . $test_result->get_attribute("TEST_IDENTIFIER");
+ echo "\n\n" . $test_result->get_attribute("TEST_TITLE") . ":\n\t" . $test_result->get_attribute("TEST_IDENTIFIER");
if(($test_description = $test_result->get_attribute("TEST_DESCRIPTION")) != false)
{
diff --git a/pts-core/objects/pts_Graph/pts_Graph.php b/pts-core/objects/pts_Graph/pts_Graph.php
index 87ac5dd..4797be5 100644
--- a/pts-core/objects/pts_Graph/pts_Graph.php
+++ b/pts-core/objects/pts_Graph/pts_Graph.php
@@ -262,7 +262,8 @@ abstract class pts_Graph
if(is_numeric($maximum))
{
- if($maximum <= 100 && $this->graph_y_title == "Percent")
+ // disable forcing 100 top when display Percent
+ if(false && $maximum <= 100 && $this->graph_y_title == "Percent")
{
$maximum = (ceil(100 / $this->graph_attr_marks) + 1) * $this->graph_attr_marks;
}
diff --git a/pts-core/options/recover_run.php b/pts-core/options/recover_run.php
index df86442..518b813 100644
--- a/pts-core/options/recover_run.php
+++ b/pts-core/options/recover_run.php
@@ -103,7 +103,7 @@ class recover_run implements pts_option_interface
if(($search_key = array_search($test_run_request->get_comparison_hash(), $result_file_hashes)) !== false)
{
- if(!in_array($recovered_identifier, $result_file_objects[$search_key]$result_object->get_result_buffer()->get_identifiers()))
+ if(!in_array($recovered_identifier, $result_file_objects[$search_key]->get_result_buffer()->get_identifiers()))
{
$add_test = true;
}
diff --git a/pts/base-test-profiles/mplayer-base.xml b/pts/base-test-profiles/mplayer-base.xml
index 4e9e14f..3d5926c 100644
--- a/pts/base-test-profiles/mplayer-base.xml
+++ b/pts/base-test-profiles/mplayer-base.xml
@@ -1,14 +1,14 @@
<?xml version="1.0"?>
<PhoronixTestSuite>
<TestProfile>
- <Version>1.0.0</Version>
+ <Version>1.0.1</Version>
<TestType>Graphics</TestType>
<License>FREE</License>
<Status>VERIFIED</Status>
<Maintainer>Michael Larabel</Maintainer>
<EnvironmentSize>30.0</EnvironmentSize>
<ProjectURL>http://www.mplayerhq.hu/</ProjectURL>
- <ExternalDependencies>build-utilities, xorg-development, xorg-video</ExternalDependencies>
+ <ExternalDependencies>build-utilities, xorg-development, xorg-video, zlib-development</ExternalDependencies>
<Extends>video-sample</Extends>
</TestProfile>
&nbs
Copyright © 2010 by Phoronix Media