9 lines
116 B
Bash
Executable File
9 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
echo Running tests
|
|
echo ========================
|
|
cd protocol
|
|
cargo test
|
|
|
|
cd ../kextinterface
|
|
go test -v .
|