Index: openacs-4/packages/search/tcl/test/search-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/search/tcl/test/search-procs.tcl,v diff -u -r1.1.2.7 -r1.1.2.8 --- openacs-4/packages/search/tcl/test/search-procs.tcl 15 Mar 2023 17:35:25 -0000 1.1.2.7 +++ openacs-4/packages/search/tcl/test/search-procs.tcl 20 Apr 2023 15:04:48 -0000 1.1.2.8 @@ -4,6 +4,27 @@ } +aa_register_case -cats { + smoke production_safe +} -procs { + util::which + apm_tar_cmd + apm_gzip_cmd +} search_exec_dependencies { + Test external command dependencies for this package. +} { + foreach cmd [list \ + [::util::which unzip] \ + [::util::which file] \ + [::util::which catdoc] \ + [::util::which xls2csv] \ + [::util::which catppt] \ + [::util::which pdftotext] \ + ] { + aa_true "'$cmd' is executable" [file executable $cmd] + } +} + aa_register_case \ -cats {api smoke} \ -procs { Index: openacs-4/packages/xotcl-core/tcl/test/xotcl-test-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/tcl/test/xotcl-test-procs.tcl,v diff -u -r1.1.2.30 -r1.1.2.31 --- openacs-4/packages/xotcl-core/tcl/test/xotcl-test-procs.tcl 1 Feb 2023 13:39:37 -0000 1.1.2.30 +++ openacs-4/packages/xotcl-core/tcl/test/xotcl-test-procs.tcl 20 Apr 2023 15:08:55 -0000 1.1.2.31 @@ -2,6 +2,21 @@ Test xotcl-core features } +aa_register_case -cats { + smoke production_safe +} -procs { + util::which + apm_tar_cmd + apm_gzip_cmd +} xotcl_core_exec_dependencies { + Test external command dependencies for this package. +} { + foreach cmd [list \ + [::util::which dot] \ + ] { + aa_true "'$cmd' is executable" [file executable $cmd] + } +} aa_register_case -cats { api smoke