Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
Hashcat
Blender
7-Zip Compression
OpenFOAM
GLmark2
Newest Tests
PyTorch
DuckDB
easyWave
Apache Hadoop
Recently Updated Tests
OpenSSL
WebP2 Image Encode
Java SciMark
Embree
Blender
RabbitMQ
New & Recently Updated Tests
Recently Updated Suites
Machine Learning
Database Test Suite
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
Metro 2033 Redux 1.1.1
pts/metro2033-redux-1.1.1
- 17 June 2016 -
Fix for latest Steam builds
install.sh
#!/bin/sh HOME=$DEBUG_REAL_HOME steam steam://install/286690 # Early 2016 fix as outlined @ https://bugs.freedesktop.org/show_bug.cgi?id=95329 echo "#include <errno.h> #include <malloc.h> #include <stdlib.h> #include <strings.h> int posix_memalign(void **memptr, size_t alignment, size_t size) { if(alignment < 32) { alignment = 32; // Optional. Might boost memcpy(). } size *= 2; // Required void *p = memalign(alignment, size); if(!p && size) { return ENOMEM; } bzero(p, size); // Optional *memptr = p; return 0; }" > posix_memalign.c cc -m32 -shared -fPIC -O2 -g -Wall -Werror -std=c99 -o posix_memalign32.so posix_memalign.c cc -m64 -shared -fPIC -O2 -g -Wall -Werror -std=c99 -o posix_memalign64.so posix_memalign.c echo '#!/bin/sh export LD_PRELOAD="$HOME/posix_memalign32.so:$HOME/posix_memalign64.so:$LD_PRELOAD" cd $DEBUG_REAL_HOME/.steam/steam/steamapps/common/Metro\ 2033\ Redux HOME=$DEBUG_REAL_HOME ./metro -benchmark benchmarks\\\\benchmark33 -bench_runs 1 -output_file $LOG_FILE -close_on_finish' > metro2033-redux chmod +x metro2033-redux
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v6.4.0--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>aver_fps #_RESULT_#</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v6.4.0--> <PhoronixTestSuite> <TestInformation> <Title>Metro 2033 Redux</Title> <Description>A Steam-based test of the Metro 2033 Redux game.</Description> <ResultScale>Frames Per Second</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> <PreInstallMessage>This test profile assumes you have the Valve Steam client already installed for your operating system / distribution and that it's installed to the standard path. Your Steam account must also be active and the game already installed. If the test appears hung you may need to manually exit the Steam client.</PreInstallMessage> </TestInformation> <TestProfile> <Version>1.1.1</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Game</SoftwareType> <TestType>Graphics</TestType> <License>Free</License> <Status>Verified</Status> <SupportedArchitectures>x86, x86_64</SupportedArchitectures> <EnvironmentSize>7000</EnvironmentSize> <ProjectURL>http://store.steampowered.com/app/286690/</ProjectURL> <RequiresCoreVersionMin>5500</RequiresCoreVersionMin> <Maintainer>Michael Larabel</Maintainer> </TestProfile> </PhoronixTestSuite>