See previous commit
authorPhilip Chimento <philip.chimento@gmail.com>
Sun, 15 Nov 2009 16:33:07 +0000 (16:33 +0000)
committerPhilip Chimento <philip.chimento@gmail.com>
Sun, 15 Nov 2009 16:33:07 +0000 (16:33 +0000)
git-svn-id: http://lassie.dyndns-server.com/svn/gargoyle-gtk@166 ddfedd41-794f-dd11-ae45-00112f111e67

tests/Makefile.am
tests/gridtest.c

index 32c81c0b223838abf7699a5541f899d99600c066..22b0c2bd103558937badc02e3aba579bec7b92df 100644 (file)
@@ -3,7 +3,7 @@ AM_CPPFLAGS = -I$(top_srcdir)
 
 dist_data_DATA = chimara.ui chimara.menus glulxercise.ui
 
-noinst_PROGRAMS = test-chimara test-multisession glulxercise
+noinst_PROGRAMS = test-chimara test-multisession glulxercise plugin-loader
 
 test_chimara_SOURCES = main.c callbacks.c error.c error.h
 test_chimara_CPPFLAGS = $(AM_CPPFLAGS) \
@@ -21,6 +21,10 @@ glulxercise_SOURCES = glulxercise.c error.c error.h
 glulxercise_CFLAGS = @TEST_CFLAGS@ $(AM_CFLAGS)
 glulxercise_LDADD = @TEST_LIBS@ $(top_builddir)/libchimara/libchimara.la
 
+plugin_loader_SOURCES = plugin-loader.c
+plugin_loader_CFLAGS = @TEST_CFLAGS@ $(AM_CFLAGS)
+plugin_loader_LDADD = @TEST_LIBS@ $(top_builddir)/libchimara/libchimara.la
+
 pkglib_LTLIBRARIES = first.la model.la gridtest.la splittest.la multiwin.la
 PLUGIN_LIBTOOL_FLAGS=-module -avoid-version -export-symbols-regex "^glk_main$$"
 
index d8922a19dac4c32c1067f35398399c4241e3bb40..c33a4766add973fe3da386c46f96cdadf95e48be 100644 (file)
@@ -49,6 +49,15 @@ void glk_main(void)
     assert(buffer);
     
     fprintf(stderr, "Line input field until end of line\n");
+    glk_window_move_cursor(mainwin, 10, 18);
+    glk_request_line_event(mainwin, buffer, 256, 0);
+    while(1) {
+        glk_select(&ev);
+        if(ev.type == evtype_LineInput)
+            break;
+    }
+    
+    fprintf(stderr, "Another line input field until end of line\n");
     glk_window_move_cursor(mainwin, 10, 20);
     glk_request_line_event(mainwin, buffer, 256, 0);
     while(1) {