summaryrefslogtreecommitdiffstats
path: root/pts
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-12-23 22:26:13 -0500
committerMichael Larabel <michael@phx-laptop.(none)>2008-12-23 22:26:13 -0500
commit9efa200bfbffc6add5ec1135514d59b1556e177f (patch)
treeb79619c02283e2f4edf5da1ea25bdcb4ec823834 /pts
parente396449f9eef8c3feffda616e83db94414f0d11c (diff)
downloadphoronix-test-suite-upstream-9efa200bfbffc6add5ec1135514d59b1556e177f.tar.gz
phoronix-test-suite-upstream-9efa200bfbffc6add5ec1135514d59b1556e177f.tar.xz
phoronix-test-suite-upstream-9efa200bfbffc6add5ec1135514d59b1556e177f.zip
pts: Add UXA acceleration check to GtkPerf test note reporting
Diffstat (limited to 'pts')
-rw-r--r--pts/test-resources/gtkperf/post.php2
1 files changed, 2 insertions, 0 deletions
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");
}