mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-16 09:50:25 +00:00
Split regex glibc test cases into separet tests
* test/src/regex-tests.el (regex-tests): Remove and split into multiple tests cases. (regex-tests-glbic-BOOST, regex-tests-glibc-PCRE, regex-tests-glibc-PTESTS, regex-tests-glibc-TESTS): New test cases split from ‘regex-tests’.
This commit is contained in:
parent
7496844e7d
commit
e725706131
@ -651,12 +651,24 @@ differences in behavior.")
|
||||
(error "Error parsing TESTS file line: '%s'" (buffer-string))))
|
||||
failures))
|
||||
|
||||
(ert-deftest regex-tests ()
|
||||
"Tests of the regular expression engine. This evaluates the
|
||||
BOOST, PCRE, PTESTS and TESTS test cases from glibc."
|
||||
(should-not (regex-tests-BOOST))
|
||||
(should-not (regex-tests-PCRE))
|
||||
(should-not (regex-tests-PTESTS))
|
||||
(ert-deftest regex-tests-BOOST ()
|
||||
"Tests of the regular expression engine.
|
||||
This evaluates the BOOST test cases from glibc."
|
||||
(should-not (regex-tests-BOOST)))
|
||||
|
||||
(ert-deftest regex-tests-PCRE ()
|
||||
"Tests of the regular expression engine.
|
||||
This evaluates the PCRE test cases from glibc."
|
||||
(should-not (regex-tests-PCRE)))
|
||||
|
||||
(ert-deftest regex-tests-PTESTS ()
|
||||
"Tests of the regular expression engine.
|
||||
This evaluates the PTESTS test cases from glibc."
|
||||
(should-not (regex-tests-PTESTS)))
|
||||
|
||||
(ert-deftest regex-tests-TESTS ()
|
||||
"Tests of the regular expression engine.
|
||||
This evaluates the TESTS test cases from glibc."
|
||||
(should-not (regex-tests-TESTS)))
|
||||
|
||||
;;; regex-tests.el ends here
|
||||
|
Loading…
Reference in New Issue
Block a user