Add ../* to PATH before running tests to find DLLs.
authorTor Lillqvist <tml@iki.fi>
Thu, 25 Oct 2001 23:50:50 +0000 (23:50 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Thu, 25 Oct 2001 23:50:50 +0000 (23:50 +0000)
2001-10-26  Tor Lillqvist  <tml@iki.fi>

* tests/makefile.msc.in: Add ../* to PATH before running
tests to find DLLs.

tests/makefile.msc.in

index 76c6092..a74eb8e 100644 (file)
@@ -64,4 +64,4 @@ libmoduletestplugin_b.dll : libmoduletestplugin_b.obj
        $(CC) $(CFLAGS) -LD libmoduletestplugin_b.obj ..\gmodule\gmodule-@GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@.lib ..\glib\glib-@GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@.lib $(LDFLAGS)
 
 check: all
-       for %p in ($(TESTS)) do %p
+       for %p in ($(TESTS)) do set PATH=..\glib;..\gmodule;..\gobject;..\gthread;%PATH% && %p