Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Flexible IO Tester
Timed Linux Kernel Compilation
Blender
SVT-AV1
7-Zip Compression
FFmpeg
Newest Tests
OpenVINO GenAI
Rustls
LiteRT
WarpX
Epoch
Valkey
Recently Updated Tests
srsRAN Project
VVenC
x265
RELION
Llamafile
Llama.cpp
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
3DMark06 1.0.0
moihack/3dmark2006-1.0.0
- 05 August 2018 -
Initial upload of 3DMark2006 test-profile
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.1--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://benchmarks.ul.com/downloads/3dmark06.exe</URL> <MD5>112aec4a1326b0a38723a865817a1c6e</MD5> <FileSize>613259032</FileSize> <PlatformSpecific>Windows, Linux</PlatformSpecific> </Package> <Package> <URL>https://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe</URL> <MD5>7c1fc2021cf57fed3c25c9b03cd0c31a</MD5> <FileSize>100271992</FileSize> <PlatformSpecific>Linux</PlatformSpecific> </Package> <Package> <URL>https://autohotkey.com/download/ahk.zip</URL> <FileSize>1</FileSize> <PlatformSpecific>Windows, Linux</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh echo "[InstallShield Silent] Version=v7.00 File=Response File [File Transfer] OverwrittenReadOnly=NoToAll [{7F3AD00A-1819-4B15-BB7D-08B3586336D7}-DlgOrder] Dlg0={7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdWelcome-0 Count=5 Dlg1={7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdLicense2-0 Dlg2={7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdAskDestPath-0 Dlg3={7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdStartCopy2-0 Dlg4={7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdFinish-0 [{7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdWelcome-0] Result=1 [{7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdLicense2-0] Result=1 [{7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdAskDestPath-0] szDir=C:\Program Files (x86)\Futuremark\3DMark06 Result=1 [{7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdStartCopy2-0] Result=1 [Application] Name=3DMark06 Version=1.2.1 Company=Futuremark Corporation Lang=0409 [{7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdFinish-0] Result=1 bOpt1=0 bOpt2=0" > setup.iss echo "SetTitleMatchMode, 2 WinWaitActive, Please Register Sleep 1000 ControlFocus, Edit1 Send %1% Sleep 1000 Send {Tab} Sleep 500 Send {Enter} Sleep 500 Send {Tab} Sleep 500 Send {Enter} Sleep 2000 Send !{f4} Sleep 2000 Send !{f4}" > activate_3dmark06.ahk echo '#!/bin/sh for i in $* do if [[ "$i" == "-width" || "$i" == "-height" || "$i" == "-antialias" || "$i" == "-filtering" ]] then Last=$i else if [ "$Last" == "-width" ]; then Width=$i elif [ "$Last" == "-height" ]; then Height=$i elif [ "$Last" == "-antialias" ]; then Antialias=$i elif [ "$Last" == "-filtering" ]; then Filtering=$i fi Last="borked" fi done x=x #dirty hack for resolution output cd "$WINEPREFIX/drive_c/Program Files (x86)/Futuremark/3DMark06" rm "log"*.html myres.3dr wine ./3DMark06.exe -nosysteminfo -nosplash -res=$Width$x$Height -aa=$Antialias -filter=$Filtering -gt2 -verbose myres.3dr sleep 5 grep -o "(.* fps)" log*.html > $LOG_FILE' > 3dmark2006 chmod +x ./3dmark2006 wine ./3dmark06.exe /s /f1"./setup.iss" unzip -o ahk.zip -d ./ahk cd ahk wine ./AutoHotKeyU64.exe ../activate_3dmark06.ahk $key & cd .. #install dx runtime so game displays properly wine ./directx_Jun2010_redist.exe /Q /T:"C:/dxsdk" cd "$WINEPREFIX/drive_c/dxsdk" wine ./DXSETUP.exe /silent #cleanup cd .. rm -rf dxsdk cd "$WINEPREFIX/drive_c/Program Files (x86)/Futuremark/3DMark06" wine ./3DMark06.exe -nosysteminfo
install_windows.sh
#!/bin/sh echo "[InstallShield Silent] Version=v7.00 File=Response File [File Transfer] OverwrittenReadOnly=NoToAll [{7F3AD00A-1819-4B15-BB7D-08B3586336D7}-DlgOrder] Dlg0={7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdWelcome-0 Count=5 Dlg1={7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdLicense2-0 Dlg2={7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdAskDestPath-0 Dlg3={7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdStartCopy2-0 Dlg4={7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdFinish-0 [{7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdWelcome-0] Result=1 [{7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdLicense2-0] Result=1 [{7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdAskDestPath-0] szDir=C:\Program Files (x86)\Futuremark\3DMark06 Result=1 [{7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdStartCopy2-0] Result=1 [Application] Name=3DMark06 Version=1.2.1 Company=Futuremark Corporation Lang=0409 [{7F3AD00A-1819-4B15-BB7D-08B3586336D7}-SdFinish-0] Result=1 bOpt1=0 bOpt2=0" > setup.iss echo "SetTitleMatchMode, 2 WinWaitActive, Please Register Sleep 1000 ControlFocus, Edit1 Send %1% Sleep 1000 Send {Tab} Sleep 500 Send {Enter} Sleep 500 Send {Tab} Sleep 500 Send {Enter} Sleep 2000 Send !{f4} Sleep 2000 Send !{f4}" > activate_3dmark06.ahk echo '#!/bin/sh for i in $* do if [[ "$i" == "-width" || "$i" == "-height" || "$i" == "-antialias" || "$i" == "-filtering" ]] then Last=$i else if [ "$Last" == "-width" ]; then Width=$i elif [ "$Last" == "-height" ]; then Height=$i elif [ "$Last" == "-antialias" ]; then Antialias=$i elif [ "$Last" == "-filtering" ]; then Filtering=$i fi Last="borked" fi done x=x #dirty hack for resolution output cd "C:/Program Files (x86)/Futuremark/3DMark06" rm "log"*.html myres.3dr ./3DMark06.exe -nosysteminfo -nosplash -res=$Width$x$Height -aa=$Antialias -filter=$Filtering -gt2 -verbose myres.3dr sleep 5 grep -o "(.* fps)" log*.html > $LOG_FILE' > 3dmark2006 chmod +x ./3dmark2006 ./3dmark06.exe /s /f1"./setup.iss" unzip -o ahk.zip -d ./ahk cd ahk ./AutoHotKeyU64.exe ../activate_3dmark06.ahk $key & cd "C:/Program Files (x86)/Futuremark/3DMark06" ./3DMark06.exe -nosysteminfo
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>(average #_RESULT_# fps)</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.1--> <PhoronixTestSuite> <TestInformation> <Title>3DMark06</Title> <AppVersion>1.2.1</AppVersion> <Description>This runs 3DMark06 Deep Freeze benchmark scene.</Description> <ResultScale>Frames Per Second</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.0</Version> <SupportedPlatforms>Windows, Linux</SupportedPlatforms> <SoftwareType>Game</SoftwareType> <TestType>Graphics</TestType> <License>Free</License> <Status>Unverified</Status> <SupportedArchitectures>x86, x86_64</SupportedArchitectures> <EnvironmentSize>1</EnvironmentSize> <ProjectURL>http://www.invalid.com</ProjectURL> <Maintainer>Dimitris Gounaridis</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>-width $VIDEO_WIDTH -height $VIDEO_HEIGHT</Value> <Message></Message> </Entry> </Menu> </Option> <Option> <DisplayName>Antialias</DisplayName> <Identifier>antialias</Identifier> <ArgumentPrefix>-antialias </ArgumentPrefix> <ArgumentPostfix></ArgumentPostfix> <DefaultEntry>0</DefaultEntry> <Menu> <Entry> <Name>None</Name> <Value>0</Value> <Message></Message> </Entry> <Entry> <Name>2x</Name> <Value>2</Value> <Message></Message> </Entry> <Entry> <Name>4x</Name> <Value>4</Value> <Message></Message> </Entry> <Entry> <Name>8x</Name> <Value>8</Value> <Message></Message> </Entry> </Menu> </Option> <Option> <DisplayName>Filtering</DisplayName> <Identifier>filtering</Identifier> <ArgumentPrefix>-filtering </ArgumentPrefix> <ArgumentPostfix></ArgumentPostfix> <DefaultEntry>0</DefaultEntry> <Menu> <Entry> <Name>Optimal</Name> <Value>optimal</Value> <Message></Message> </Entry> <Entry> <Name>Bilinear</Name> <Value>bilinear</Value> <Message></Message> </Entry> <Entry> <Name>Trilinear</Name> <Value>trilinear</Value> <Message></Message> </Entry> <Entry> <Name>Anisotropic</Name> <Value>anisotropic</Value> <Message></Message> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>