Index: openacs-4/packages/xowiki/tcl/test/xowiki-admin-tests-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/test/xowiki-admin-tests-procs.tcl,v diff -u -r1.1.2.28 -r1.1.2.29 --- openacs-4/packages/xowiki/tcl/test/xowiki-admin-tests-procs.tcl 20 Apr 2023 15:21:42 -0000 1.1.2.28 +++ openacs-4/packages/xowiki/tcl/test/xowiki-admin-tests-procs.tcl 14 Jun 2023 08:40:23 -0000 1.1.2.29 @@ -6,23 +6,27 @@ } -aa_register_case -cats { - smoke production_safe -} -procs { - util::which -} xowiki_exec_dependencies { - Test external command dependencies for this package. -} { - foreach cmd [list \ - [::util::which tar] \ - [::util::which ffmpeg] \ - [::util::which convert] \ - [::util::which tidy] \ - [::util::which clamdscan] - ] { - aa_true "'$cmd' is executable" [file executable $cmd] - } -} +# +# This test could be used to make sure binaries in use in the code are +# actually available to the system. +# +# aa_register_case -cats { +# smoke production_safe +# } -procs { +# util::which +# } xowiki_exec_dependencies { +# Test external command dependencies for this package. +# } { +# foreach cmd [list \ +# [::util::which tar] \ +# [::util::which ffmpeg] \ +# [::util::which convert] \ +# [::util::which tidy] \ +# [::util::which clamdscan] +# ] { +# aa_true "'$cmd' is executable" [file executable $cmd] +# } +# } aa_register_case \ -cats {api smoke} \