blob: 5d1dc1d5208743c505b228b313b55ae01d2e8bfd [file] [log] [blame] [edit]
#!/bin/bash
set -e
cargo build --example shootout-regex-dna
diff \
./examples/regexdna-output.txt \
<(./target/debug/examples/shootout-regex-dna < ./examples/regexdna-input.txt)
cargo build --example shootout-regex-dna-single
diff \
./examples/regexdna-output.txt \
<(./target/debug/examples/shootout-regex-dna-single < ./examples/regexdna-input.txt)
cargo build --example shootout-regex-dna-cheat
diff \
./examples/regexdna-output.txt \
<(./target/debug/examples/shootout-regex-dna-cheat < ./examples/regexdna-input.txt)