Add testcase for image-base issue. git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@2361 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-crt/testcases/t_imagebase.c b/mingw-w64-crt/testcases/t_imagebase.c new file mode 100644 index 0000000..f018a3d --- /dev/null +++ b/mingw-w64-crt/testcases/t_imagebase.c
@@ -0,0 +1,10 @@ +#include <stdio.h> + +extern unsigned int __ImageBase; + +int main() +{ + printf ("%x\n", __ImageBase); + return 0; +} +