Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
x265
FFmpeg
Newest Tests
LiteRT
WarpX
Epoch
Valkey
Whisperfile
XNNPACK
Recently Updated Tests
ASTC Encoder
SVT-AV1
Unvanquished
Primesieve
XNNPACK
oneDNN
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
OSBench 1.0.0
pts/osbench-1.0.0
- 22 March 2018 -
Initial commit of OSBench OS micro-benchmarks test profile.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.0m1--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://phoronix-test-suite.com/benchmark-files/osbench-master-1.zip</URL> <MD5>bb0d5466cd628ce7105f8e4b7325ba7f</MD5> <SHA256>a23807b36eb4d3ea74dc91e90159261e423a7117e93104908a2c44168df153c0</SHA256> <FileSize>9411</FileSize> <PlatformSpecific>Linux, BSD, MacOSX</PlatformSpecific> </Package> <Package> <URL>http://www.bitsnbites.eu/files/osbench-win64-20170529.zip</URL> <MD5>ccdaa89fe21fc19226932f23559e6c02</MD5> <SHA256>ce19a6c843bb6eb417a36352e4142b228c44b7d3e43ef498d734c460fc7f5081</SHA256> <FileSize>30251</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh unzip -o osbench-master-1.zip cd osbench-master mkdir out cd out meson --buildtype=release ../src ninja mkdir target echo $? > ~/install-exit-status # so same names as Windows binaries for easier cross-platform... mv create_files create_files.exe mv create_processes create_processes.exe mv create_threads create_threads.exe mv launch_programs launch_programs.exe mv mem_alloc mem_alloc.exe cd ~ echo "#!/bin/sh cd osbench-master/out/ ./\$@ > \$LOG_FILE 2>&1 echo $? > ~/test-exit-status" > osbench chmod +x osbench
install_windows.sh
#!/bin/sh unzip -o osbench-win64-20170529.zip mv osbench osbench-windows echo "#!/bin/sh cd osbench-windows ./\$@ > \$LOG_FILE" > osbench chmod +x osbench
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.0m1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>#_RESULT_# us / alloc</OutputTemplate> <LineHint>us</LineHint> <ResultScale>us Per Event</ResultScale> </ResultsParser> <ResultsParser> <OutputTemplate>#_RESULT_# ns / alloc</OutputTemplate> <LineHint>ns</LineHint> <ResultScale>Ns Per Event</ResultScale> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.0m1--> <PhoronixTestSuite> <TestInformation> <Title>OSBench</Title> <Description>OSBench is a collection of micro-benchmarks for measuring operating system primitives like time to create threads/processes, launching programs, creating files, and memory allocation.</Description> <ResultScale>us Per Event</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.0</Version> <SupportedPlatforms>Linux, BSD, MacOSX, Windows</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, meson</ExternalDependencies> <EnvironmentSize>1</EnvironmentSize> <ProjectURL>https://github.com/mbitsnbites/osbenc</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Test</DisplayName> <Identifier>test</Identifier> <ArgumentPrefix></ArgumentPrefix> <ArgumentPostfix></ArgumentPostfix> <DefaultEntry>0</DefaultEntry> <Menu> <Entry> <Name>Create Files</Name> <Value>create_files.exe target</Value> <Message></Message> </Entry> <Entry> <Name>Create Processes</Name> <Value>create_processes.exe</Value> <Message></Message> </Entry> <Entry> <Name>Create Threads</Name> <Value>create_threads.exe</Value> <Message></Message> </Entry> <Entry> <Name>Launch Programs</Name> <Value>launch_programs.exe</Value> <Message></Message> </Entry> <Entry> <Name>Memory Allocations</Name> <Value>mem_alloc.exe</Value> <Message></Message> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>