diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-11-10 16:30:50 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-11-10 16:30:50 +0100 |
commit | 3aad70326db4b654c836be97f7b96bb71e10202a (patch) | |
tree | 8d2b84f1c02468e529ecff95316691d390053673 /test/lisp/so-long-tests | |
parent | 810fa21d26453f898de9747ece7205dfe6de9d08 (diff) | |
download | emacs-3aad70326db4b654c836be97f7b96bb71e10202a.tar.gz emacs-3aad70326db4b654c836be97f7b96bb71e10202a.tar.bz2 emacs-3aad70326db4b654c836be97f7b96bb71e10202a.zip |
Use "grep -E" instead of deprecated "egrep"
* admin/emake:
* test/lisp/so-long-tests/so-long-tests.el: Use "grep -E" instead of
deprecated "egrep".
Diffstat (limited to 'test/lisp/so-long-tests')
-rw-r--r-- | test/lisp/so-long-tests/so-long-tests.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lisp/so-long-tests/so-long-tests.el b/test/lisp/so-long-tests/so-long-tests.el index 7eee345aadd..cda5ae497fd 100644 --- a/test/lisp/so-long-tests/so-long-tests.el +++ b/test/lisp/so-long-tests/so-long-tests.el @@ -32,7 +32,7 @@ ;; Running manually: ;; ;; for test in lisp/so-long-tests/*-tests.el; do make ${test%.el}; done \ -;; 2>&1 | egrep -v '^(Loading|Source file|make|Changed to so-long-mode)' +;; 2>&1 | grep -E -v '^(Loading|Source file|make|Changed to so-long-mode)' ;; ;; Which is equivalent to: ;; @@ -41,7 +41,7 @@ ;; "../src/emacs" --no-init-file --no-site-file --no-site-lisp \ ;; -L ":." -l ert -l "$test" --batch --eval \ ;; '(ert-run-tests-batch-and-exit (quote (not (tag :unstable))))'; \ -;; done 2>&1 | egrep -v '^(Loading|Source file|Changed to so-long-mode)' +;; done 2>&1 | grep -E -v '^(Loading|Source file|Changed to so-long-mode)' ;; ;; See also `ert-run-tests-batch-and-exit'. |