GNU bug report logs -
#75358
[scratch/elisp-benchmarks] repeated runs don't apply selector
Previous Next
Full log
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
On scratch/elisp-benchmarks, the following emacs -Q invocation:
./src/emacs --batch -Q -l ./elisp-benchmarks/elisp-benchmarks.el --eval '(progn (elisp-benchmarks-run) (delete-other-windows) (elisp-benchmarks-run "bubble"))'
is equivalent to
./src/emacs --batch -Q -l ./elisp-benchmarks/elisp-benchmarks.el --eval '(progn (elisp-benchmarks-run) (delete-other-windows) (elisp-benchmarks-run))'
but
./src/emacs --batch -Q -l ./elisp-benchmarks/elisp-benchmarks.el --eval '(progn (elisp-benchmarks-run "bubble") (delete-other-windows) (elisp-benchmarks-run))'
is not.
(The (delete-other-windows) is necessary because of other issues).
The expected behavior is for the SELECTOR to determine the tests to be
executed, as described in the documentation; in reality, it merely
determines which tests are compiled, then all symbols matching the
regexp produced below are executed.
In the first example, the second SELECTOR argument has no effect,
because the tests to be run are determined as:
(mapatoms (lambda (s)
(let ((name (symbol-name s)))
(when (and (fboundp s)
(string-match
"\\`elb-\\(.*\\)-entry\\'" name))
(push (match-string 1 name) names)))))
without respecting the SELECTOR argument in any fashion: any elisp
function that happens to match the symbol format is run.
"Fixing" this by applying the selector as a regular expression to the
"name" value seems simple enough, as a stop-gap. But: IMHO, reserving
chunks of the symbol namespace for special uses is unsatisfactory and
should be avoided. This is true in both interactive and
non-interactive emacs runs. Running benchmarks in a live Emacs
session can be useful; running functions based on their symbol name
alone is dangerous.
Of course, the selector is currently applied to file names, not test
names, so we'd have to decide what (elisp-benchmarks-run "font-lock"),
for example, is supposed to do.
IMHO, the proper fix is to use a working test registration mechanism,
ideally ERT.
This bug report was last modified 105 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.