What's your system info? phoronix-test-suite system-info.
If I run
phoronix-test-suite run build-apache
I get:
=====================================
Timed Apache Compilation (Run 1 of 3)
=====================================
=====================================
Timed Apache Compilation (Run 2 of 3)
=====================================
=====================================
Timed Apache Compilation (Run 3 of 3)
=====================================
####################################
Timed Apache Compilation:
Time To Compile
Average: 0.00 Seconds
####################################
and I don't get prompted to save / view the results.
If I just go into:
.phoronix-test-suite/installed-tests/build-apache
and run:
time-compile-apache
I get a normal compile result.....
I've just installed this and ran a few tests... the others seem
to work ok....
jack
What's your system info? phoronix-test-suite system-info.
phoronix-test-suite system-info
=====================================
Phoronix Test Suite v2.0.0 (SANDTORG)
System Information
=====================================
Hardware:
Processor: Intel Core i7 CPU 920 @ 3.31GHz (Total Cores: 8), Motherboard: EVGA 132-BL-E758, Chipset: Intel X58 I/O + ICH10R, System Memory: 2 x 2048 MB DDR2-1033MHz, Disk: 80GB ExcelStor Techno, Graphics: GeForce 9800 GT 1024MB (600/900MHz)
Software:
OS: Fedora 11, Kernel: 2.6.29.6-217.2.3.fc11.i686.PAE (i686), Desktop: GNOME 2.26.3, Display Server: X.Org Server 1.6.1.901 (1.6.2 RC 1), OpenGL: 3.0.0 NVIDIA 180.51, Compiler: GCC 4.4.0, File-System: ext4, Screen Resolution: 1600x1200
--------------------------------------------------------------------
this is the bottom part of the output from the time-compile-apache command:
httpd-2.2.11/modules/debug/mod_dumpio.c
httpd-2.2.11/modules/debug/NWGNUmakefile
httpd-2.2.11/modules/debug/mod_dumpio.dsp
httpd-2.2.11/modules/debug/README
httpd-2.2.11/README
httpd-2.2.11/apachenw.mcp.zip
httpd-2.2.11/buildconf
httpd-2.2.11/libhttpd.dsp
httpd-2.2.11/LAYOUT
httpd-2.2.11/.deps
Making all in srclib
Making all in pcre
Making all in os
Making all in unix
Making all in server
Making all in mpm
Making all in prefork
Making all in modules
Making all in aaa
Making all in filters
Making all in loggers
Making all in metadata
Making all in http
Making all in generators
Making all in mappers
Making all in support
it does crate a httpd binary.
-----------------------------------------------------
here is the content of the time-compile-apache command:
#!/bin/sh
rm -rf httpd-2.2.11/
tar -xvf httpd-2.2.11.tar.gz
cd httpd-2.2.11/
./configure > /dev/null
sleep 3
$TIMER_START
make -s -j $NUM_CPU_JOBS 2>&1
$TIMER_STOP
jack