blob: ff47485458abbd4b7bbd38aecc5ecbb12ed621e3 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
set -e
cargo build --verbose
(cd ctest && ./compile && LD_LIBRARY_PATH=../../target/debug ./test)
(cd examples && ./compile && LD_LIBRARY_PATH=../../target/debug ./iter)
|