summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/qmake/tst_qmake.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/tools/qmake/tst_qmake.cpp')
-rw-r--r--tests/auto/tools/qmake/tst_qmake.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/tools/qmake/tst_qmake.cpp b/tests/auto/tools/qmake/tst_qmake.cpp
index 54032ad750..b940e57543 100644
--- a/tests/auto/tools/qmake/tst_qmake.cpp
+++ b/tests/auto/tools/qmake/tst_qmake.cpp
@@ -76,6 +76,7 @@ private slots:
void duplicateLibraryEntries();
void export_across_file_boundaries();
void include_dir();
+ void include_pwd();
void install_files();
void install_depends();
void quotedfilenames();
@@ -320,6 +321,14 @@ void tst_qmake::include_dir()
QVERIFY( test_compiler.makeDistClean( buildDir ));
}
+void tst_qmake::include_pwd()
+{
+ QString workDir = base_path + "/testdata/include_pwd";
+ QVERIFY( test_compiler.qmake( workDir, "include_pwd" ));
+ QVERIFY( test_compiler.make( workDir ));
+ QVERIFY( test_compiler.makeDistClean( workDir ));
+}
+
void tst_qmake::install_files()
{
QString workDir = base_path + "/testdata/shadow_files";