winetest: Get rid of the archive URL, it's no longer used.

oldstable
Alexandre Julliard 2009-02-19 20:27:53 +01:00
parent b3b7ecb390
commit 9caf14c444
4 changed files with 2 additions and 9 deletions

View File

@ -55,7 +55,7 @@ winetest-dist.exe: $(OBJS) dist.res.o Makefile.in
$(CC) $(APPMODE) $(OBJS) dist.res.o -o $@ -L$(DLLDIR) $(IMPORTS:%=-L$(DLLDIR)/%) $(ALL_LIBS)
-upx -9 -qqq $@
dist.res: winetest.rc tests.rc build.nfo tests.url winetest.ico $(TESTBINS)
dist.res: winetest.rc tests.rc build.nfo winetest.ico $(TESTBINS)
@DEPENDENCIES@ # everything below this line is overwritten by make depend

View File

@ -22,6 +22,3 @@
/* @makedep: build.nfo */
BUILD_INFO STRINGRES "build.nfo"
/* @makedep: tests.url */
TESTS_URL STRINGRES "tests.url"

View File

@ -631,10 +631,7 @@ run_tests (char *logname)
xprintf ("Version 4\n");
xprintf ("Tests from build %s\n", build_id[0] ? build_id : "-" );
strres = extract_rcdata (MAKEINTRESOURCE(TESTS_URL), STRINGRES, &strsize);
xprintf ("Archive: ");
if (strres) xprintf ("%.*s", strsize, strres);
else xprintf ("-\n");
xprintf ("Archive: -\n"); /* no longer used */
xprintf ("Tag: %s\n", tag);
xprintf ("Build info:\n");
strres = extract_rcdata (MAKEINTRESOURCE(BUILD_INFO), STRINGRES, &strsize);

View File

@ -52,4 +52,3 @@
/* String resources */
#define BUILD_INFO 10001
#define TESTS_URL 10002