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
Timed Linux Kernel Compilation 1.16.0
pts/build-linux-kernel-1.16.0
- 13 March 2024 -
Update against Linux 6.8 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://fr2.rpmfind.net/linux/kernel/v6.x/linux-6.8.tar.xz, http://ftp.jaist.ac.jp/pub/Linux/kernel.org/linux/kernel/v6.x/linux-6.8.tar.xz, https://mirror.clarkson.edu/linux/linux/kernel/v6.x/linux-6.8.tar.xz, https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.8.tar.xz</URL> <MD5>72d623b959a11850b57406f0b9fe3946</MD5> <SHA256>c969dea4e8bb6be991bbf7c010ba0e0a5643a3a8d8fb0a2aaa053406f1e965f3</SHA256> <FileName>linux-6.8.tar.xz</FileName> <FileSize>142502100</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh echo "#!/bin/sh cd linux-6.8 make -s -j \$NUM_CPU_CORES 2>&1 echo \$? > ~/test-exit-status" > build-linux-kernel chmod +x build-linux-kernel
interim.sh
#!/bin/sh cd linux-6.8 make clean
post.sh
#!/bin/sh rm -rf linux-6.8
pre.sh
#!/bin/bash rm -rf linux-6.8 tar -xf linux-6.8.tar.xz cd linux-6.8 if [ -z "$@" ] then # This is for old PTS clients not passing anything per older old test profile configs that may be in suite... export LINUX_MAKE_CONFIG="defconfig" else export LINUX_MAKE_CONFIG="$1" fi echo "make $LINUX_MAKE_CONFIG" make "$LINUX_MAKE_CONFIG" make clean scripts/config --set-val CONFIG_WERROR n
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>Timed Linux Kernel Compilation</Title> <AppVersion>6.8</AppVersion> <Description>This test times how long it takes to build the Linux kernel in a default configuration (defconfig) for the architecture being tested or alternatively an allmodconfig for building all possible kernel modules for the build.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <SubTitle>Time To Compile</SubTitle> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.16.0</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, bc, bison, flex, openssl-development</ExternalDependencies> <EnvironmentSize>982</EnvironmentSize> <ProjectURL>https://www.kernel.org/</ProjectURL> <RepositoryURL>https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git</RepositoryURL> <InternalTags>SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> <SystemDependencies>libelf.h, cpio</SystemDependencies> </TestProfile> <TestSettings> <Option> <DisplayName>Build</DisplayName> <Identifier>build</Identifier> <Menu> <Entry> <Name>defconfig</Name> <Value>defconfig</Value> <Message>Default Kernel Build</Message> </Entry> <Entry> <Name>allmodconfig</Name> <Value>allmodconfig</Value> <Message>This option is *much* more time consuming...</Message> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>