summaryrefslogtreecommitdiffstats
path: root/Tests/FindGLUT/Test/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/FindGLUT/Test/main.c')
-rw-r--r--Tests/FindGLUT/Test/main.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/Tests/FindGLUT/Test/main.c b/Tests/FindGLUT/Test/main.c
new file mode 100644
index 0000000..1c8569c
--- /dev/null
+++ b/Tests/FindGLUT/Test/main.c
@@ -0,0 +1,11 @@
+#include <GL/glut.h>
+#include <stdio.h>
+
+int main()
+{
+ /* The following should call exit(1) and print
+ freeglut ERROR: Function <glutCreateWindow> called
+ without first calling 'glutInit'.
+ to stderr */
+ glutCreateWindow("gluttest");
+}