Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
Rustls
LiteRT
WarpX
Epoch
Valkey
Whisperfile
Recently Updated Tests
Mobile Neural Network
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
New & Recently Updated Tests
Recently Updated Suites
Database Test Suite
Machine Learning
Steam
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
Systemd Total Boot Time 1.0.4
pts/systemd-boot-total-1.0.4
- 01 August 2016 -
Updates from Intel
install.sh
#!/bin/sh SA=`which systemd-analyze` echo $? > ~/install-exit-status cat > systemd-boot-total << EOT #!/bin/sh OUTPUT="\$(${SA} | sed 's/[+|=]/\n/g'|\ sed 's/Startup finished in//'|\ sed 's/^ //'|\ sed 's/\(.*\)\ (\(.*\))/\2|\1/'|\ awk -F "|" '{if (NF == 1)print "total|"\$1;else print\$1"|"\$2}'|\ awk -F "|" '{\ len=split(\$2,n," ");\ total=0;\ for(i=1;i<=len;i++)\ {\ l=length(n[i]);\ if(n[i] ~ /min$/)\ total+=substr(n[i],0,l-3)*60000;\ else if(n[i] ~ /[0-9]s$/)\ total+=substr(n[i],0,l-1)*1000;\ else\ total+=substr(n[i],0,l-2)\ }\ print \$1,total;\ }'| grep \$@ | cut -d' ' -f2)" echo \$OUTPUT > \$LOG_FILE 2>&1 EOT chmod +x systemd-boot-total
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v6.6.0m1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>#_RESULT_#</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
support-check.sh
#!/bin/sh which systemd-analyze if [ $? -gt 0 ]; then echo "Systemd is required for this test." > $TEST_CUSTOM_ERROR fi
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v6.6.0m1--> <PhoronixTestSuite> <TestInformation> <Title>Systemd Total Boot Time</Title> <Description>This test uses systemd-analyze to report the entire boot time.</Description> <ResultScale>ms</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>1</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.4</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <Maintainer>Jim Kukunas</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Test</DisplayName> <Identifier>run-test</Identifier> <ArgumentPrefix></ArgumentPrefix> <ArgumentPostfix></ArgumentPostfix> <DefaultEntry>0</DefaultEntry> <Menu> <Entry> <Name>Total</Name> <Value>total</Value> <Message></Message> </Entry> <Entry> <Name>Userspace</Name> <Value>userspace</Value> <Message></Message> </Entry> <Entry> <Name>Kernel</Name> <Value>kernel</Value> <Message></Message> </Entry> <Entry> <Name>Loader</Name> <Value>loader</Value> <Message></Message> </Entry> <Entry> <Name>Firmware</Name> <Value>firmware</Value> <Message></Message> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>