diff options
author | Hans Breuer <hans@breuer.org> | 2006-01-06 12:05:28 +0000 |
---|---|---|
committer | Hans Breuer <hans@src.gnome.org> | 2006-01-06 12:05:28 +0000 |
commit | b546df99ea3207d44ae2ccbefbc4c8f9ec2b9006 (patch) | |
tree | 0888ca34824368a13227154cb1c6c0508f1370a3 /tests/makefile.msc | |
parent | a2c7b3f4baf03d656ab9cba2bc2b793299d375f3 (diff) | |
download | gtk+-b546df99ea3207d44ae2ccbefbc4c8f9ec2b9006.tar.gz |
added a bunch of tests use g_snprintf() don't include unistd.h twice.
2006-01-06 Hans Breuer <hans@breuer.org>
* tests/makefile.msc : added a bunch of tests
* tests/testcellrenderertext.c : use g_snprintf()
* tests/testfilechooserbutton.c : don't include unistd.h twice.
Removed the unconditional one and added direct.h for G_OS_WIN32
Diffstat (limited to 'tests/makefile.msc')
-rw-r--r-- | tests/makefile.msc | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/tests/makefile.msc b/tests/makefile.msc index 778db5e3c8..335a4b58b3 100644 --- a/tests/makefile.msc +++ b/tests/makefile.msc @@ -40,14 +40,15 @@ all : \ # Test programs: # TESTAPPS = \ - testabi testactions \ - testcairo testcalendar testcombo testcombochange \ + autotestfilechooser floatingtest \ + testaccel testactions \ + testcairo testcalendar testcellrenderertext testcombo testcombochange \ testdnd \ - testentrycompletion \ - testfilechooser \ + testellipsise testentrycompletion \ + testfilechooser testfilechooserbutton \ testgtk \ - testicontheme testiconview testinput \ - testmenus testmerge testmultidisplay testmultiscreen \ + testicontheme testiconview testimage testinput \ + testmenus testmenubars testmerge testmultidisplay testmultiscreen \ testrgb \ testselection testspinbutton \ testtext testtextbuffer testtoolbar \ @@ -62,7 +63,7 @@ TESTAPPS = \ all-test-apps: - for %d in ($(TESTAPPS)) do nmake -nologo -f makefile.msc one-test-app THIS=%d + @for %d in ($(TESTAPPS)) do @nmake -nologo -f makefile.msc one-test-app THIS=%d one-test-app: @nmake -nologo -f makefile.msc $(THIS).exe TESTAPP=$(THIS) EXTRA_$(THIS)=1 @@ -73,6 +74,14 @@ one-test-app: EXTRA_LIBS = $(CAIRO_LIBS) !ENDIF +!IFDEF EXTRA_testentrycompletion +EXTRA_OBJETCS = prop-editor.obj +!ENDIF + +!IFDEF EXTRA_testfilechooserbutton +EXTRA_OBJETCS = prop-editor.obj +!ENDIF + !IFDEF EXTRA_testgtk EXTRA_LIBS = $(CAIRO_LIBS) EXTRA_OBJETCS = prop-editor.obj |