diff --git a/tools/unixbench/UnixBench/Run b/tools/unixbench/UnixBench/Run index 41637bea160ef2fb331b85d2d61503367e752a50..0a18e5b7991540dd50c1a358753a0a1f9fd8adfe 100755 --- a/tools/unixbench/UnixBench/Run +++ b/tools/unixbench/UnixBench/Run @@ -1003,7 +1003,8 @@ sub getSystemInfo { } # Get graphics hardware info. - $info->{'graphics'} = getCmdOutput("3dinfo | cut -f1 -d\'(\'"); + # $info->{'graphics'} = getCmdOutput("3dinfo | cut -f1 -d\'(\'"); + $info->{'graphics'} = "N/A"; # Get system run state, load and usage info. $info->{'runlevel'} = getCmdOutput("who -r | awk '{print \$3}'"); @@ -1039,13 +1040,13 @@ sub preChecks { # Check that the required files are in the proper places. my $make = $ENV{MAKE} || "make"; - system("$make check"); - if ($? != 0) { - system("$make all"); - if ($? != 0) { - abortRun("\"$make all\" failed"); - } - } + # system("$make check"); + # if ($? != 0) { + # system("$make all"); + # if ($? != 0) { + # abortRun("\"$make all\" failed"); + # } + # } # Create a script to kill this run. system("echo \"kill -9 $$\" > \"${TMPDIR}/kill_run\"");