summaryrefslogtreecommitdiff
path: root/test/MSVC/embed-manifest.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/MSVC/embed-manifest.py')
-rw-r--r--test/MSVC/embed-manifest.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/MSVC/embed-manifest.py b/test/MSVC/embed-manifest.py
index a5a906ee..9fd44600 100644
--- a/test/MSVC/embed-manifest.py
+++ b/test/MSVC/embed-manifest.py
@@ -67,7 +67,18 @@ main(int argc, char *argv)
""")
test.write('testdll.cpp', """\
+#include <stdio.h>
+#include <stdlib.h>
int i;
+int
+testdll(int argc, char *argv)
+{
+ printf("testdll.cpp\\n");
+ if (0)
+ exit (0);
+ else
+ return 0;
+}
""")
test.run(arguments = '.')