all-tests target

master
Yevgen Muntyan 2006-04-16 11:40:58 -05:00
parent 22cf474bb8
commit f67ac1ccd4
7 changed files with 9 additions and 6 deletions

View File

@ -12,6 +12,7 @@ AM_CFLAGS = \
-I$(top_srcdir)/$(MOO_SRC_PREFIX) \
-I$(top_builddir)/$(MOO_SRC_PREFIX) \
-I$(top_srcdir)/$(MOO_SRC_PREFIX)/mooutils \
-I$(top_builddir)/$(MOO_SRC_PREFIX)/mooutils\
$(MOO_CFLAGS) \
$(PYTHON_INCLUDES) \
$(PYGTK_CFLAGS) \
@ -98,6 +99,7 @@ mooedit_datadir = ${MOO_DATA_DIR}
mooedit_data_DATA = ui.xml.example actions.cfg.example
ui.xml.example: tests/medit-ui.xml
cp $(srcdir)/tests/medit-ui.xml ui.xml.example
CLEANFILES += ui.xml.example
EXTRA_DIST += actions.cfg.example

View File

@ -1,6 +1,7 @@
EXTRA_PROGRAMS += testhtml testtext medit mterm markup termbuffer testfileview testpaned testpanedfileview miniglade langparser testobject testfold ms
bin_PROGRAMS =
all-tests: $(EXTRA_PROGRAMS)
EXTRA_DIST += \
tests/pyapp.py.in \

View File

@ -37,7 +37,7 @@ int main (int argc, char *argv[])
file = argv[1];
}
my_xml = moo_glade_xml_new (file, NULL, NULL);
my_xml = moo_glade_xml_new (file, NULL);
if (!my_xml)
{
@ -45,7 +45,6 @@ int main (int argc, char *argv[])
exit (1);
}
moo_glade_xml_unref (my_xml);
g_print ("*** Success ***\n");
if (!check)
@ -59,5 +58,6 @@ int main (int argc, char *argv[])
}
}
g_object_unref (my_xml);
return 0;
}

View File

@ -66,7 +66,7 @@ G_GNUC_UNUSED static gboolean print_random_hard (MooTerm *term)
moo_term_feed (term, s, -1);
g_free (s);
moo_term_force_update (term);
gdk_window_process_updates (GTK_WIDGET(term)->window, FALSE);
}
g_print ("buffer: %dx%d\nterm: %dx%d\n",

View File

@ -1,4 +1,4 @@
#include "mooutils/moofileview/moofileview.h"
#include "moofileview/moofileview.h"
#include <gtk/gtk.h>

View File

@ -1,5 +1,5 @@
#include "mooutils/moobigpaned.h"
#include "mooutils/moofileview/moofileview.h"
#include "moofileview/moofileview.h"
#include <gtk/gtk.h>

View File

@ -1,5 +1,5 @@
#include "mooutils/moopaned.h"
#include "mooutils/moofileview/moofileview.h"
#include "moofileview/moofileview.h"
#include <gtk/gtk.h>