summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/plugins/imageformats/jpeg
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/plugins/imageformats/jpeg')
-rw-r--r--tests/benchmarks/plugins/imageformats/jpeg/jpeg.cpp4
-rw-r--r--tests/benchmarks/plugins/imageformats/jpeg/jpeg.pro8
2 files changed, 5 insertions, 7 deletions
diff --git a/tests/benchmarks/plugins/imageformats/jpeg/jpeg.cpp b/tests/benchmarks/plugins/imageformats/jpeg/jpeg.cpp
index a3644efd53..761fbcc7a7 100644
--- a/tests/benchmarks/plugins/imageformats/jpeg/jpeg.cpp
+++ b/tests/benchmarks/plugins/imageformats/jpeg/jpeg.cpp
@@ -59,7 +59,9 @@ void tst_jpeg::jpegDecodingQtWebkitStyle()
{
// QtWebkit currently calls size() to get the image size for layouting purposes.
// Then when it is in the viewport (we assume that here) it actually gets decoded.
- QFile inputJpeg(SRCDIR "n900.jpeg");
+ QString testFile = QFINDTESTDATA("n900.jpeg");
+ QVERIFY2(!testFile.isEmpty(), "cannot find test file n900.jpeg!");
+ QFile inputJpeg(testFile);
QVERIFY(inputJpeg.exists());
inputJpeg.open(QIODevice::ReadOnly);
QByteArray imageData = inputJpeg.readAll();
diff --git a/tests/benchmarks/plugins/imageformats/jpeg/jpeg.pro b/tests/benchmarks/plugins/imageformats/jpeg/jpeg.pro
index d278e9e721..281e79f585 100644
--- a/tests/benchmarks/plugins/imageformats/jpeg/jpeg.pro
+++ b/tests/benchmarks/plugins/imageformats/jpeg/jpeg.pro
@@ -3,10 +3,6 @@ TARGET = jpeg
QT += testlib
CONFIG += release
-wince*: {
- DEFINES += SRCDIR=\\\"\\\"
-} else {
- DEFINES += SRCDIR=\\\"$$PWD/\\\"
-}
-
SOURCES += jpeg.cpp
+
+TESTDATA = n900.jpeg