From: Frank Schlottmann-G. <fs...@us...> - 2000-11-14 15:36:45
|
Update of /cvsroot/firebird/TCS/tcs/tcs In directory slayer.i.sourceforge.net:/tmp/cvs-serv22350/TCS/tcs/tcs Modified Files: makefile.linux tan.e Log Message: Found a way to reenable list_runs in tan.e without causing gpre to dump core Index: makefile.linux =================================================================== RCS file: /cvsroot/firebird/TCS/tcs/tcs/makefile.linux,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** makefile.linux 2000/11/11 15:45:06 1.2 --- makefile.linux 2000/11/14 15:36:38 1.3 *************** *** 15,19 **** # # Contributor(s): ______________________________________. ! # $Id$ .SUFFIXES: .c .e .gdb .gdl .e.c : --- 15,22 ---- # # Contributor(s): ______________________________________. ! # $Log$ ! # Revision 1.3 2000/11/14 15:36:38 fsg ! # Found a way to reenable list_runs in tan.e without causing gpre to dump core ! # .SUFFIXES: .c .e .gdb .gdl .e.c : *************** *** 22,27 **** gdef $< ! TARGETS= tcs # removed tan temporarily FSG 11.Nov.2000 # Purify related flags --- 25,31 ---- gdef $< ! TARGETS= tcs tan # removed tan temporarily FSG 11.Nov.2000 + # as it compiles now I have added it again FSG 14.Nov:2000 # Purify related flags Index: tan.e =================================================================== RCS file: /cvsroot/firebird/TCS/tcs/tcs/tan.e,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** tan.e 2000/11/14 13:22:05 1.2 --- tan.e 2000/11/14 15:36:38 1.3 *************** *** 21,24 **** --- 21,27 ---- * Contributor(s): ______________________________________. * $Log$ + * Revision 1.3 2000/11/14 15:36:38 fsg + * Found a way to reenable list_runs in tan.e without causing gpre to dump core + * * Revision 1.2 2000/11/14 13:22:05 fsg * Changes to get tan compiled, not very useful at the moment *************** *** 2141,2151 **** */ ! /* gpre doesn't like the aggregate functions, ! * so don't do it until gpre is fixed ! * FSG 14.Nov.2000 EXEC SQL DECLARE LR CURSOR FOR ! SELECT RUN, COUNT(*), MAX(DATE), MIN(DATE) FROM LTCS.FAILURES WHERE RUN LIKE :input_pattern --- 2144,2154 ---- */ ! /* We need to quote DATE in this to ! prevent gpre from segfaulting ! FSG 14.Nov.2000*/ EXEC SQL DECLARE LR CURSOR FOR ! SELECT RUN, COUNT(*), MAX("DATE"), MIN("DATE") FROM LTCS.FAILURES WHERE RUN LIKE :input_pattern *************** *** 2174,2178 **** EXEC SQL CLOSE LR; ! */ /* Close does not drop the request handle, so we drop it here. * Note that this depends on this SQL cursor being the only --- 2177,2181 ---- EXEC SQL CLOSE LR; ! /* Close does not drop the request handle, so we drop it here. * Note that this depends on this SQL cursor being the only *************** *** 2180,2189 **** * request handle stashed away in dbb */ ! /*RELEASE_REQUESTS FOR LTCS; if (!count) fprintf (output, "No runs showing failures on %s/%s\n", dbb->dbb_system, dbb->dbb_platform); ! */ return TRUE; } --- 2183,2192 ---- * request handle stashed away in dbb */ ! /*RELEASE_REQUESTS FOR LTCS;*/ if (!count) fprintf (output, "No runs showing failures on %s/%s\n", dbb->dbb_system, dbb->dbb_platform); ! return TRUE; } |