Phoronix Forums  

Go Back   Phoronix Forums > Phoronix > Phoronix Test Suite

Phoronix Test Suite Discussion & collaboration on the Phoronix Test Suite software and specification.

Reply
 
Thread Tools Display Modes
  #1  
Old 10-27-2009, 03:00 AM
phoronix phoronix is offline
Phoronix News Bot
 
Join Date: Jan 2007
Posts: 3,103
Default Phoronix Test Suite 2.2 Enters Beta

Phoronix: Phoronix Test Suite 2.2 Enters Beta

After a three month development period following the release of Phoronix Test Suite 2.0, the first beta release of Phoronix Test Suite 2.2 "Bardu" is now available for all of your testing needs on Linux, Mac OS X, OpenSolaris, and BSD platforms. Phoronix Test Suite 2.2 Beta 1 carries more than 200 changes since the release of 2.0 Sandtorg with many new prominent features being introduced, new test profiles added, and greater usability enhancements. In this article, we will go over some of the key improvements to be found in Phoronix Test Suite 2.2.

http://www.phoronix.com/vr.php?view=14302
Reply With Quote
  #2  
Old 10-28-2009, 04:49 AM
R3MF R3MF is offline
Phoronix Member
 
Join Date: Jul 2006
Posts: 69
Default

Hi Phoronix,

Kongrats, and two Questions:

1. Do you anticipate that the OpenGL version of the Heaven benchmark will be released in time for PTS 2.2?

2. Do you intend to use the opensuse build service so that opensuse users can easily install and use PTS 2.2?

Regards
Reply With Quote
  #3  
Old 10-28-2009, 10:00 AM
Michael Michael is offline
Phoronix
 
Join Date: Jun 2006
Location: United States
Posts: 4,564
Default

Quote:
Originally Posted by R3MF View Post
1. Do you anticipate that the OpenGL version of the Heaven benchmark will be released in time for PTS 2.2?

2. Do you intend to use the opensuse build service so that opensuse users can easily install and use PTS 2.2?

Regards
1. We will be working with Unigine Corp to time it appropriately. The worst case scenario is that PTS 2.2.1 will be released with unigine-heaven.

2. I thought before I heard it was within the OpenSuSE Build Service already (well, 2.0 or some earlier version). Bring it up with the OpenSuSE Build Service maintainer for the PTS package to get 2.2 in there.
Reply With Quote
  #4  
Old 10-28-2009, 11:15 AM
bugmenot bugmenot is offline
Senior Member
 
Join Date: Nov 2007
Posts: 363
Default

Well, I'd like to test, but I can't get the GUI to work. I use Fedora 11 on AMD64.

Here the error:
phoronix-test-suite]$ ./phoronix-test-suite gui
PHP Fatal error: Class 'GtkWindow' not found in /home/x/Desktop/phoronix-test-suite/pts-core/objects/gtk/pts_gtk_window.php on line 23



I installed all packages I think, I even compiled this strange php gtk stuff, installed it. But I don't know if the module is loaded or not. It's pretty hard if you need to compile and search for many solutions to get an application running. Isn't there a possibility to get this stuff running without compiling etc?

Thanks.
Reply With Quote
  #5  
Old 10-28-2009, 11:21 AM
Michael Michael is offline
Phoronix
 
Join Date: Jun 2006
Location: United States
Posts: 4,564
Default

Are you running Beta 1? It shouldn't be giving that fatal error but providing a Phoronix Test Suite message instead.

Unfortunately, PHP GTK is not packaged in Fedora or Ubuntu, so it's a bitch to get the GUI to work... Sadly building PHP GTK is the only way to get the GUI working... Though the CLI version will run straight-up, of course.
Reply With Quote
  #6  
Old 10-28-2009, 02:06 PM
bugmenot bugmenot is offline
Senior Member
 
Join Date: Nov 2007
Posts: 363
Default

I am running not fedora12, I run fedora 11 the final release. I know the cli version runs fine, but I want to try the GUI!

I installed also the pts package provided by fedora, the same error if I start it with the GUI parameter. Maybe something with my php gtk installation is wrong? i took the version 2 thing and then ./buildconfig, then ./configure, then make -j3 and (as root) make install.

Thanks!
Reply With Quote
  #7  
Old 10-28-2009, 02:23 PM
Michael Michael is offline
Phoronix
 
Join Date: Jun 2006
Location: United States
Posts: 4,564
Default

Did you add "extension=php_gtk.so" (or whatever the so ends up being named) to your /etc/php5/cli/php.ini ?
Reply With Quote
  #8  
Old 10-28-2009, 04:20 PM
R3MF R3MF is offline
Phoronix Member
 
Join Date: Jul 2006
Posts: 69
Default

Quote:
Originally Posted by Michael View Post
1. We will be working with Unigine Corp to time it appropriately. The worst case scenario is that PTS 2.2.1 will be released with unigine-heaven.

2. I thought before I heard it was within the OpenSuSE Build Service already (well, 2.0 or some earlier version). Bring it up with the OpenSuSE Build Service maintainer for the PTS package to get 2.2 in there.
thank you for the answers, good news.
Reply With Quote
  #9  
Old 10-28-2009, 05:53 PM
bugmenot bugmenot is offline
Senior Member
 
Join Date: Nov 2007
Posts: 363
Default

Quote:
Originally Posted by Michael View Post
Did you add "extension=php_gtk.so" (or whatever the so ends up being named) to your /etc/php5/cli/php.ini ?
No, I did not know that I need to this. I thought a "make install" would be enough. I'll try tomorrow maybe, I don't know which php_gtk.so you mean.
Thanks.
Reply With Quote
  #10  
Old 11-03-2009, 06:50 PM
tronath tronath is offline
Junior Member
 
Join Date: Jul 2008
Posts: 5
Default

Quote:
Originally Posted by bugmenot View Post
No, I did not know that I need to this. I thought a "make install" would be enough. I'll try tomorrow maybe, I don't know which php_gtk.so you mean.
Thanks.
I have just installed PHP GTK on Ubuntu 9.10, and here is how I did it:

1) Install dependencies using Synaptic (php5-cli, php5-dev, libgtk2.0-dev)
2) Run the following:
Code:
su -
cd /usr/share/aclocal
cat lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4 >> libtool.m4
3) Download the PHP GTK v2.0.1 source tar
4) Start Terminal in the extracted location
5) Run ./buildconf then ./configure then make then sudo make install
6) Add the following line to /etc/php5/conf.d/php_gtk2.ini
Code:
extension=php_gtk2.so
If you are on Ubuntu 9.10 64-bit, you'll probably be able to skip steps 3-5 by doing the following
Quote:
Originally Posted by Michael View Post
If you're on Ubuntu 64-bit, you can add http://phoronix-test-suite.com/misc/....1-0_amd64.deb

Last edited by tronath; 11-04-2009 at 10:02 AM. Reason: Added some more info
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 06:19 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Copyright ©2004 - 2009 by Phoronix Media.