summaryrefslogtreecommitdiff
path: root/Tests/ExportImport/Import/A/SubDirLink.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/ExportImport/Import/A/SubDirLink.c')
-rw-r--r--Tests/ExportImport/Import/A/SubDirLink.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/Tests/ExportImport/Import/A/SubDirLink.c b/Tests/ExportImport/Import/A/SubDirLink.c
new file mode 100644
index 000000000..eb4b8609a
--- /dev/null
+++ b/Tests/ExportImport/Import/A/SubDirLink.c
@@ -0,0 +1,14 @@
+#ifndef DEF_SubDirLinkAImportedForImport
+# error "DEF_SubDirLinkAImportedForImport is not defined but should be!"
+#endif
+#ifndef DEF_SubDirLinkBImportedForImport
+# error "DEF_SubDirLinkBImportedForImport is not defined but should be!"
+#endif
+
+extern int testTopDirLib(void);
+extern int testSubDirLinkA(void);
+
+int main(void)
+{
+ return (testTopDirLib() + testSubDirLinkA() + 0);
+}