From 274baba4ab191e4b357ef5babc01a1c5501afebf Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 26 Feb 2010 02:50:28 +0100 Subject: testprogs: print the directory paths as well in spoolss test. Guenther --- testprogs/win32/spoolss/spoolss.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'testprogs') diff --git a/testprogs/win32/spoolss/spoolss.c b/testprogs/win32/spoolss/spoolss.c index c9a7bc0105..38eb7ed7d7 100644 --- a/testprogs/win32/spoolss/spoolss.c +++ b/testprogs/win32/spoolss/spoolss.c @@ -1073,6 +1073,10 @@ static BOOL test_GetPrintProcessorDirectory(struct torture_context *tctx, } } + if (tctx->print) { + printf("\tPrint Processor Directory\t= %s\n\n", (LPSTR)buffer); + } + free(buffer); buffer = NULL; } @@ -1120,6 +1124,10 @@ static BOOL test_GetPrinterDriverDirectory(struct torture_context *tctx, } } + if (tctx->print) { + printf("\tPrinter Driver Directory\t= %s\n\n", (LPSTR)buffer); + } + free(buffer); buffer = NULL; } -- cgit