summaryrefslogtreecommitdiffstats
path: root/pts
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-10-31 14:42:24 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-10-31 14:42:24 -0400
commit99b35fb0971b3db76d166f2cae8d17028b3e9ed8 (patch)
treee65b94e60e4bcf17f746fa9029045d17f986653e /pts
parent79233aaeaa010a3cb8b0aad97c045dc612bd3cfe (diff)
downloadphoronix-test-suite-upstream-99b35fb0971b3db76d166f2cae8d17028b3e9ed8.tar.gz
phoronix-test-suite-upstream-99b35fb0971b3db76d166f2cae8d17028b3e9ed8.tar.xz
phoronix-test-suite-upstream-99b35fb0971b3db76d166f2cae8d17028b3e9ed8.zip
pts: Drop test profile named wine for running WINE git code since it
looks like it's never used anymore and poorly named
Diffstat (limited to 'pts')
-rw-r--r--pts/test-profiles/wine.xml29
-rwxr-xr-xpts/test-resources/wine/install.sh23
2 files changed, 0 insertions, 52 deletions
diff --git a/pts/test-profiles/wine.xml b/pts/test-profiles/wine.xml
deleted file mode 100644
index 54a220a..0000000
--- a/pts/test-profiles/wine.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<PhoronixTestSuite>
- <TestProfile>
- <Version>0.1</Version>
- <TestType>Graphics</TestType>
- <SoftwareType>Other</SoftwareType>
- <License>FREE</License>
- <Status>UNVERIFIED</Status>
- <Maintainer>Stefan Doesinger</Maintainer>
- <ExternalDependencies>glut, libpng-development, git, xorg-development, bison, flex, build-utilities</ExternalDependencies>
- <ProjectURL>http://www.winehq.org/</ProjectURL>
- <UnsupportedPlatforms>MacOSX, Solaris</UnsupportedPlatforms>
- </TestProfile>
- <TestInformation>
- <Title>Wine Conformance Tests</Title>
- <Description>This test runs the Wine Direct3D conformance tests.</Description>
- </TestInformation>
- <TestSettings>
- <Option>
- <DisplayName>WINE Test</DisplayName>
- <Identifier>wine-test</Identifier>
- <Menu>
- <Entry>
- <Name>Direct3D 9 Visual Test</Name>
- <Value>dlls/d3d9/tests/d3d9_test.exe.so visual</Value>
- </Entry>
- </Menu>
- </Option>
- </TestSettings>
-</PhoronixTestSuite>
diff --git a/pts/test-resources/wine/install.sh b/pts/test-resources/wine/install.sh
deleted file mode 100755
index 9c339c1..0000000
--- a/pts/test-resources/wine/install.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-if [ ! -f wine-git ]
- then
- git clone git://source.winehq.org/git/wine.git wine-git
- cd wine-git/
- else
- cd wine-git/
- git pull
-fi
-
-make clean
-./configure
-make depend
-make
-
-cd ..
-
-echo "#!/bin/sh
-cd wine-git/
-export WINETEST_PLATFORM=wine
-./wine \$@" > wine
-chmod +x wine