forked from mirrors/gecko-dev
Import the improvements made in mp4parse-rust repo. The changes would save some redundant copy when calling avif related APIs and provide the ability to get the alpha data of the parsed avif image. Differential Revision: https://phabricator.services.mozilla.com/D98950
20 lines
408 B
Bash
Executable file
20 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
|