blob: 9970a9945a810ccb48ee64c1024fe1455ccd6857 [file] [log] [blame]
Chih-Hung Hsieh048fc042020-04-16 10:44:22 -07001#!/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