• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3# This is a convenience script for running a broad swath of the syntax tests.
4echo "===== DEFAULT FEATURES ==="
5cargo test
6
7features=(
8    unicode
9    unicode-age
10    unicode-bool
11    unicode-case
12    unicode-gencat
13    unicode-perl
14    unicode-script
15    unicode-segment
16)
17for f in "${features[@]}"; do
18    echo "===== FEATURE: $f ==="
19    cargo test --no-default-features --features "$f"
20done
21