2022-09-28 13:37:22 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Imports
|
2022-11-26 14:14:39 -08:00
|
|
|
script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
project_dir="$(dirname "${script_dir}")"
|
2022-09-28 13:37:22 -07:00
|
|
|
program_dir="$project_dir"/programs
|
|
|
|
|
|
|
|
cd "$program_dir"/anchor-buffer-parser
|
|
|
|
anchor test
|
|
|
|
|
|
|
|
cd "$program_dir"/anchor-feed-parser
|
|
|
|
anchor test
|
|
|
|
|
2022-11-26 14:14:39 -08:00
|
|
|
cd "$program_dir"/anchor-history-parser
|
|
|
|
anchor test
|
|
|
|
|
2022-09-28 13:37:22 -07:00
|
|
|
cd "$program_dir"/anchor-vrf-parser
|
|
|
|
anchor test
|