summaryrefslogtreecommitdiffstats
path: root/vendor/regex-automata/tests/data/misc.toml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 18:31:44 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 18:31:44 +0000
commitc23a457e72abe608715ac76f076f47dc42af07a5 (patch)
tree2772049aaf84b5c9d0ed12ec8d86812f7a7904b6 /vendor/regex-automata/tests/data/misc.toml
parentReleasing progress-linux version 1.73.0+dfsg1-1~progress7.99u1. (diff)
downloadrustc-c23a457e72abe608715ac76f076f47dc42af07a5.tar.xz
rustc-c23a457e72abe608715ac76f076f47dc42af07a5.zip
Merging upstream version 1.74.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/regex-automata/tests/data/misc.toml')
-rw-r--r--vendor/regex-automata/tests/data/misc.toml99
1 files changed, 0 insertions, 99 deletions
diff --git a/vendor/regex-automata/tests/data/misc.toml b/vendor/regex-automata/tests/data/misc.toml
deleted file mode 100644
index c05418dd6..000000000
--- a/vendor/regex-automata/tests/data/misc.toml
+++ /dev/null
@@ -1,99 +0,0 @@
-[[tests]]
-name = "ascii-literal"
-regex = "a"
-input = "a"
-matches = [[0, 1]]
-
-[[tests]]
-name = "ascii-literal-not"
-regex = "a"
-input = "z"
-matches = []
-
-[[tests]]
-name = "ascii-literal-anchored"
-regex = "a"
-input = "a"
-matches = [[0, 1]]
-anchored = true
-
-[[tests]]
-name = "ascii-literal-anchored-not"
-regex = "a"
-input = "z"
-matches = []
-anchored = true
-
-[[tests]]
-name = "anchor-start-end-line"
-regex = '(?m)^bar$'
-input = "foo\nbar\nbaz"
-matches = [[4, 7]]
-
-[[tests]]
-name = "prefix-literal-match"
-regex = '^abc'
-input = "abc"
-matches = [[0, 3]]
-
-[[tests]]
-name = "prefix-literal-match-ascii"
-regex = '^abc'
-input = "abc"
-matches = [[0, 3]]
-unicode = false
-utf8 = false
-
-[[tests]]
-name = "prefix-literal-no-match"
-regex = '^abc'
-input = "zabc"
-matches = []
-
-[[tests]]
-name = "one-literal-edge"
-regex = 'abc'
-input = "xxxxxab"
-matches = []
-
-[[tests]]
-name = "terminates"
-regex = 'a$'
-input = "a"
-matches = [[0, 1]]
-
-[[tests]]
-name = "suffix-100"
-regex = '.*abcd'
-input = "abcd"
-matches = [[0, 4]]
-
-[[tests]]
-name = "suffix-200"
-regex = '.*(?:abcd)+'
-input = "abcd"
-matches = [[0, 4]]
-
-[[tests]]
-name = "suffix-300"
-regex = '.*(?:abcd)+'
-input = "abcdabcd"
-matches = [[0, 8]]
-
-[[tests]]
-name = "suffix-400"
-regex = '.*(?:abcd)+'
-input = "abcdxabcd"
-matches = [[0, 9]]
-
-[[tests]]
-name = "suffix-500"
-regex = '.*x(?:abcd)+'
-input = "abcdxabcd"
-matches = [[0, 9]]
-
-[[tests]]
-name = "suffix-600"
-regex = '[^abcd]*x(?:abcd)+'
-input = "abcdxabcd"
-matches = [[4, 9]]