summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGE-LOG1
-rw-r--r--pts/test-resources/gtkperf/post.php2
2 files changed, 3 insertions, 0 deletions
diff --git a/CHANGE-LOG b/CHANGE-LOG
index c1365f4..d878805 100644
--- a/CHANGE-LOG
+++ b/CHANGE-LOG
@@ -5,6 +5,7 @@ Phoronix Test Suite (Git)
- pts-core: Improve size detection of low-capacity hard disks
- pts-core: Improve lspci support for distributions using /sbin/lspci (such as OpenSuSE)
- pts_Graph: Tweak formatting of basic graph attributes
+- pts: Add UXA acceleration check to GtkPerf test note reporting
Phoronix Test Suite 1.6.0 Beta 1
December 18, 2008
diff --git a/pts/test-resources/gtkperf/post.php b/pts/test-resources/gtkperf/post.php
index 1d8b37b..b6ec3d9 100644
--- a/pts/test-resources/gtkperf/post.php
+++ b/pts/test-resources/gtkperf/post.php
@@ -6,6 +6,8 @@ if(is_file("/var/log/Xorg.0.log"))
if(strpos($x_log, "Using EXA") > 0)
file_put_contents("pts-test-note", "2D Acceleration: EXA");
+ else if(strpos($x_log, "Using UXA") > 0)
+ file_put_contents("pts-test-note", "2D Acceleration: UXA");
else if(strpos($x_log, "Using XFree86") > 0)
file_put_contents("pts-test-note", "2D Acceleration: XAA");
}