The start of a LONG Fuel repair thread...
#26
RE: The start of a LONG Fuel repair thread...
Hi Weblacky,

yes I read the manual ;-) tried "-help", which is why I was surprised that script did not seem to explicitly have graphics diags as part of listed test:

<<START LIST>>
###### Start Diagnostic List ########################################
## List of available diagnostics. Structure is as follows:
## diagName = Name of the diagnostic ex: "grizzly"
## diagBin = Name of diagnostic binary ex: "griz_script"
## diagDesc = Short description of the diagnostic ex: "System Stress Test"
## diagFunc = Function that runs the diagnostic. (See below for documentation on the function)
## diagBasic = String to pass to diagFunc when script is in Basic mode. (Or "NORUN" if diag does not run in that mode)
## diagNormal = String to pass to diagFunc when script is in Normal mode. (Or "NORUN" if diag does not run in that mode)
## diagExt = String to pass to diagFunc when script is in Extensive mode. (Or "NORUN" if diag does not run in that mode)
##
## To add a diagnostic - add it to this list and create a function (towards the bottom) to create a command line
## See the diag section for information on what the function needs to do.
##
## Diags are executed in the order they appear on this list.

@diags = (
# olperi
{"diagName" => "olperi", "diagBin" => "olperi", "diagDesc" => "CPU Diagnostic", "diagFunc" => \&runOlperi, "diagBasic" => "lvl1", "diagNormal" => "lvl1", "diagExt" => "lvl2" },
# torpedo
{"diagName" => "torpedo", "diagBin" => "torpedo", "diagDesc" => "CPU Floating Point Unit Diagnostic", "diagFunc" => \&runTorpedo, "diagBasic" => "lvl1", "diagNormal" => "lvl1", "diagExt" => "lvl2" },
# olmem
{"diagName" => "olmem", "diagBin" => "olmem", "diagDesc" => "Online Memory Diagnostic (Check /var/adm/SYSLOG for error message)", "diagFunc" => \&runOlmem, "diagBasic" => "lvl1", "diagNormal" => "lvl1", "diagExt" => "lvl2" },
{"diagName" => "olcmt", "diagBin" => "olcmt", "diagDesc" => "Cache/Memory Test (Check /var/adm/SYSLOG for error message)", "diagFunc" => \&runOlcmt, "diagBasic" => "lvl1", "diagNormal" => "lvl1", "diagExt" => "lvl2" },
# oldisk
{"diagName" => "oldisk", "diagBin" => "oldisk", "diagDesc" => "Disk Diagnostic", "diagFunc" => \&runOldisk, "diagBasic" => "NORUN", "diagNormal" => "lvl1", "diagExt" => "lvl2" },
# olpci
{"diagName" => "olpci", "diagBin" => "olpci", "diagDesc" => "PCI Config Space Dump/Decode", "diagFunc" => \&runOlpci, "diagBasic" => "NORUN", "diagNormal" => "lvl1", "diagExt" => "lvl2" },
# olenet
{"diagName" => "olenet", "diagBin" => "olenet", "diagDesc" => "BaseIO Ethernet Diagnostic", "diagFunc" => \&runOlenet, "diagBasic" => "NORUN", "diagNormal" => "lvl1", "diagExt" => "lvl2" },
# olsio
{"diagName" => "olsio", "diagBin" => "olsio", "diagDesc" => "Serial Port Diagnostic", "diagFunc" => \&runOlsio, "diagBasic" => "NORUN", "diagNormal" => "lvl1", "diagExt" => "lvl2" },
# olrti
{"diagName" => "olrti", "diagBin" => "olrti", "diagDesc" => "Real Time Interrupt Test", "diagFunc" => \&runOlrti, "diagBasic" => "NORUN", "diagNormal" => "lvl1", "diagExt" => "lvl2" },
# olusb
{"diagName" => "olusb", "diagBin" => "olusb", "diagDesc" => "USB Diagnostic", "diagFunc" => \&runOlusb, "diagBasic" => "NORUN", "diagNormal" => "lvl1", "diagExt" => "lvl2" },
# olrtr
{"diagName" => "olrtr", "diagBin" => "olrtr", "diagDesc" => "Router Diagnostic", "diagFunc" => \&runOlrtr, "diagBasic" => "lvl1", "diagNormal" => "lvl1", "diagExt" => "lvl2" },
# pandora
{"diagName" => "pandora", "diagBin" => "pandora", "diagDesc" => "System Stress Test", "diagFunc" => \&runPandora, "diagBasic" => "lvl1", "diagNormal" => "lvl1", "diagExt" => "lvl2" },
# olvst
{"diagName" => "olvst", "diagBin" => "olvst", "diagDesc" => "Generic Network test using Sockets", "diagFunc" => \&runOlvst, "diagBasic" => "NORUN", "diagNormal" => "NORUN", "diagExt" => "lvl1" }

);
###### End Diagnostic List ##########################################
<<END LIST>>

The list is from the "runalldiags" script.

I was trying to find the individual test executable, as when I run the script I get crash in reboot on PCI test, even thought the "offliine" test goes ok...

Maybe the graphics is part of "pandora" stress test...

EDIT #1:
Ok ran just "pandora" and it reports will run: io tests, fpu tests, mem tests, gfx tests, ntwk tests
So it is the "pandora" stress test that has the graphics test.

Cheers from Oz,


jwhat/John.
(This post was last modified: 11-04-2021, 01:40 AM by jwhat.)
jwhat
Octane/O350/Fuel User

Trade Count: (0)
Posts: 513
Threads: 29
Joined: Jul 2018
Location: Australia
Find Reply
11-04-2021, 01:21 AM


Messages In This Thread
The start of a LONG Fuel repair thread... - by weblacky - 10-22-2021, 05:26 AM
RE: The start of a LONG Fuel repair thread... - by jwhat - 10-22-2021, 06:21 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 10-22-2021, 06:34 AM
RE: The start of a LONG Fuel repair thread... - by indigofan - 10-22-2021, 01:34 PM
RE: The start of a LONG Fuel repair thread... - by Raion - 10-22-2021, 01:41 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 10-22-2021, 03:57 PM
RE: The start of a LONG Fuel repair thread... - by Shiunbird - 10-22-2021, 08:27 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 10-29-2021, 03:05 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 10-29-2021, 08:42 PM
RE: The start of a LONG Fuel repair thread... - by jwhat - 10-29-2021, 10:15 PM
RE: The start of a LONG Fuel repair thread... - by Raion - 10-29-2021, 10:36 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 10-29-2021, 10:46 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 10-31-2021, 05:28 AM
RE: The start of a LONG Fuel repair thread... - by Raion - 10-31-2021, 05:36 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 10-31-2021, 05:55 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-01-2021, 03:23 AM
RE: The start of a LONG Fuel repair thread... - by Raion - 11-01-2021, 03:50 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-01-2021, 04:05 AM
RE: The start of a LONG Fuel repair thread... - by Raion - 11-01-2021, 04:52 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-03-2021, 01:27 AM
RE: The start of a LONG Fuel repair thread... - by jwhat - 11-03-2021, 04:54 AM
RE: The start of a LONG Fuel repair thread... - by Raion - 11-03-2021, 05:02 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-03-2021, 06:28 AM
RE: The start of a LONG Fuel repair thread... - by jwhat - 11-03-2021, 11:36 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-03-2021, 11:54 PM
RE: The start of a LONG Fuel repair thread... - by jwhat - 11-04-2021, 01:21 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-04-2021, 01:59 AM
RE: The start of a LONG Fuel repair thread... - by jwhat - 11-04-2021, 04:30 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-04-2021, 05:32 AM
RE: The start of a LONG Fuel repair thread... - by jwhat - 11-04-2021, 06:23 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-05-2021, 09:47 PM
RE: The start of a LONG Fuel repair thread... - by Raion - 11-06-2021, 02:17 AM
RE: The start of a LONG Fuel repair thread... - by vvuk - 11-07-2021, 07:49 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-07-2021, 02:45 PM
RE: The start of a LONG Fuel repair thread... - by vvuk - 11-07-2021, 05:00 PM
RE: The start of a LONG Fuel repair thread... - by Raion - 11-07-2021, 03:30 PM
RE: The start of a LONG Fuel repair thread... - by Raion - 11-07-2021, 06:46 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-07-2021, 08:11 PM
RE: The start of a LONG Fuel repair thread... - by vvuk - 11-07-2021, 08:35 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-07-2021, 10:43 PM
RE: The start of a LONG Fuel repair thread... - by vvuk - 11-08-2021, 08:51 PM
RE: The start of a LONG Fuel repair thread... - by Raion - 11-07-2021, 08:59 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-09-2021, 12:34 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-12-2021, 10:50 PM
RE: The start of a LONG Fuel repair thread... - by jwhat - 11-12-2021, 11:04 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-12-2021, 11:08 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-13-2021, 02:18 AM
RE: The start of a LONG Fuel repair thread... - by Raion - 11-13-2021, 02:34 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-13-2021, 02:52 AM
RE: The start of a LONG Fuel repair thread... - by jwhat - 11-13-2021, 03:49 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-13-2021, 04:02 AM
RE: The start of a LONG Fuel repair thread... - by jwhat - 11-13-2021, 05:31 AM
RE: The start of a LONG Fuel repair thread... - by Raion - 11-13-2021, 05:34 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-13-2021, 06:27 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-17-2021, 06:06 AM
RE: The start of a LONG Fuel repair thread... - by Raion - 11-17-2021, 07:28 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-17-2021, 07:51 AM
RE: The start of a LONG Fuel repair thread... - by jwhat - 11-17-2021, 12:31 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-17-2021, 12:43 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-20-2021, 01:37 AM
RE: The start of a LONG Fuel repair thread... - by jwhat - 11-20-2021, 05:30 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-20-2021, 06:35 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-21-2021, 01:29 AM
RE: The start of a LONG Fuel repair thread... - by jwhat - 11-21-2021, 05:46 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-21-2021, 06:13 AM
RE: The start of a LONG Fuel repair thread... - by jwhat - 11-21-2021, 06:42 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-21-2021, 06:54 AM
RE: The start of a LONG Fuel repair thread... - by robespierre - 11-21-2021, 08:04 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-21-2021, 08:39 AM
RE: The start of a LONG Fuel repair thread... - by jwhat - 11-21-2021, 10:03 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-21-2021, 11:55 AM
RE: The start of a LONG Fuel repair thread... - by jwhat - 11-21-2021, 11:16 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 11-27-2021, 03:12 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 12-02-2021, 12:43 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 12-07-2021, 04:47 AM
RE: The start of a LONG Fuel repair thread... - by Raion - 12-07-2021, 06:49 AM
RE: The start of a LONG Fuel repair thread... - by jwhat - 12-07-2021, 07:40 AM
RE: The start of a LONG Fuel repair thread... - by jan-jaap - 12-07-2021, 02:46 PM
RE: The start of a LONG Fuel repair thread... - by indigofan - 12-07-2021, 04:34 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 12-07-2021, 04:56 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 12-16-2021, 12:13 AM
RE: The start of a LONG Fuel repair thread... - by jan-jaap - 12-16-2021, 08:38 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 12-16-2021, 09:25 AM
RE: The start of a LONG Fuel repair thread... - by weblacky - 01-02-2022, 01:08 AM
RE: The start of a LONG Fuel repair thread... - by megaimg - 01-10-2022, 03:58 AM
RE: The start of a LONG Fuel repair thread... - by jan-jaap - 01-02-2022, 08:15 PM
RE: The start of a LONG Fuel repair thread... - by weblacky - 01-02-2022, 08:48 PM

Forum Jump:


Users browsing this thread: 2 Guest(s)