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
Metro: Last Light Redux 1.2.0
pts/metroll-redux-1.2.0
- 23 October 2016 -
Add resolution options.
install.sh
#!/bin/sh HOME=$DEBUG_REAL_HOME steam steam://install/287390 # 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 xrandr -s $1x$2 sleep 3 export LD_PRELOAD="$HOME/posix_memalign32.so:$HOME/posix_memalign64.so:$LD_PRELOAD" cd $DEBUG_REAL_HOME/.steam/steam/steamapps/common/Metro\ Last\ Light\ Redux HOME=$DEBUG_REAL_HOME ./metro -benchmark benchmarks\\\\benchmark -bench_runs 1 -output_file $LOG_FILE -close_on_finish xrandr -s 0 sleep 3' > metroll-redux chmod +x metroll-redux
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v6.6.1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>aver_fps #_RESULT_#</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v6.6.1--> <PhoronixTestSuite> <TestInformation> <Title>Metro: Last Light Redux</Title> <Description>A Steam-based test of the Metro: Last Light 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.2.0</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/287390/</ProjectURL> <RequiresCoreVersionMin>5500</RequiresCoreVersionMin> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Resolution</DisplayName> <Identifier>auto-resolution</Identifier> <ArgumentPrefix></ArgumentPrefix> <ArgumentPostfix></ArgumentPostfix> <DefaultEntry>0</DefaultEntry> <Menu> <Entry> <Name>$VIDEO_WIDTH x $VIDEO_HEIGHT</Name> <Value>$VIDEO_WIDTH $VIDEO_HEIGHT</Value> <Message></Message> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>