diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/MSVC/embed-manifest.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/MSVC/embed-manifest.py b/test/MSVC/embed-manifest.py index a5a906e..9fd4460 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 = '.')
|