Index: openacs-4/packages/acs-tcl/tcl/test/defs-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/test/defs-procs.tcl,v diff -u -r1.1.2.8 -r1.1.2.9 --- openacs-4/packages/acs-tcl/tcl/test/defs-procs.tcl 29 Jul 2024 14:00:31 -0000 1.1.2.8 +++ openacs-4/packages/acs-tcl/tcl/test/defs-procs.tcl 27 Aug 2024 11:24:10 -0000 1.1.2.9 @@ -209,16 +209,18 @@ close $wfd set path /packages/acs-automated-testing/www/[file rootname [file tail $tmpfile]] - file rename -- $tmpfile [acs_root_dir]${path}.tcl + set callable_tmpfile [acs_root_dir]${path}.tcl + file rename -- $tmpfile $callable_tmpfile aa_$outcome "Template failure is $outcome?" [catch { # # The template is inflated in a background job so to # not tamper with the actual request in case of error. # - set result [ad_job template::adp_include $path $vars] + aa_silence_log_entries -severities warning { + set result [ad_job template::adp_include $path $vars] + } }] - - file delete -- $tmpfile + file delete -- $callable_tmpfile } }