Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
Blender
SVT-AV1
FFmpeg
dav1d
7-Zip Compression
Newest Tests
OpenVINO GenAI
Rustls
LiteRT
WarpX
Epoch
Valkey
Recently Updated Tests
Llama.cpp
OpenVINO
Renaissance
Blender
vkpeak
ProjectPhysX OpenCL-Benchmark
New & Recently Updated Tests
Recently Updated Suites
Machine Learning
Server Motherboard
HPC - High Performance Computing
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.2
pts/systemd-boot-total-1.0.2
- 07 June 2016 -
Parse in seconds
install.sh
#!/bin/sh SA=`which systemd-analyze` echo $? > ~/install-exit-status cat > systemd-boot-total << EOT #!/bin/sh # This assumes total is always last ${SA} | \ sed -e 's/in /\\n/' -e 's/[+|=] /\\n/g' -e 's/ms//g' | \ tail -n 1 > \$LOG_FILE 2>&1 EOT chmod +x systemd-boot-total
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v6.4.0--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>#_RESULT_#</OutputTemplate> <StripFromResult>s</StripFromResult> </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.4.0--> <PhoronixTestSuite> <TestInformation> <Title>Systemd Total Boot Time</Title> <Description>This test uses systemd-analyze to report the entire boot time.</Description> <ResultScale>s</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>1</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.2</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <Maintainer>Jim Kukunas</Maintainer> </TestProfile> </PhoronixTestSuite>