summaryrefslogtreecommitdiffstats
path: root/tests/auto/qmake/testdata/export_across_file_boundaries/foo.pro
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qmake/testdata/export_across_file_boundaries/foo.pro')
-rw-r--r--tests/auto/qmake/testdata/export_across_file_boundaries/foo.pro17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/auto/qmake/testdata/export_across_file_boundaries/foo.pro b/tests/auto/qmake/testdata/export_across_file_boundaries/foo.pro
new file mode 100644
index 0000000000..c3196cbceb
--- /dev/null
+++ b/tests/auto/qmake/testdata/export_across_file_boundaries/foo.pro
@@ -0,0 +1,17 @@
+!equals(FOO,bar) {
+ message( "FAILED: export() invisible from default_pre.prf to foo.pro" )
+}
+
+O_FOO=$$fromfile(oink.pri,FOO)
+O_BAR=$$fromfile(oink.pri,BAR)
+
+!equals(O_BAR,bar) {
+ message( "FAILED: export() invisible from oink.pri through \$$fromfile()" )
+}
+
+!equals(O_FOO,bar) {
+ message( "FAILED: export() invisible from default_pre.prf through \$$fromfile()" )
+}
+
+
+