mirror of
https://gitee.com/openharmony/third_party_rust_regex
synced 2025-04-06 04:01:54 +00:00

This commit refactors the way this library handles Unicode data by making it completely optional. Several features are introduced which permit callers to select only the Unicode data they need (up to a point of granularity). An important property of these changes is that presence of absence of crate features will never change the match semantics of a regular expression. Instead, the presence or absence of a crate feature can only add or subtract from the set of all possible valid regular expressions. So for example, if the `unicode-case` feature is disabled, then attempting to produce `Hir` for the regex `(?i)a` will fail. Instead, callers must use `(?i-u)a` (or enable the `unicode-case` feature). This partially addresses #583 since it permits callers to decrease binary size.
21 lines
408 B
Bash
Executable File
21 lines
408 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This is a convenience script for running a broad swath of the syntax tests.
|
|
echo "===== DEFAULT FEATURES ==="
|
|
cargo test
|
|
|
|
features=(
|
|
unicode
|
|
unicode-age
|
|
unicode-bool
|
|
unicode-case
|
|
unicode-gencat
|
|
unicode-perl
|
|
unicode-script
|
|
unicode-segment
|
|
)
|
|
for f in "${features[@]}"; do
|
|
echo "===== FEATURE: $f ==="
|
|
cargo test --no-default-features --features "$f"
|
|
done
|