12345678910111213141516171819202122232425262728293031323334353637 |
- #!/bin/bash
- echo "Building programs"
- #
- # Build the UncheckedAccount variant.
- #
- pushd programs/unchecked-account/
- output=$(anchor build 2>&1 > /dev/null)
- if ! [[ $output =~ "Struct field \"unchecked\" is unsafe" ]]; then
- echo "Error: expected /// CHECK error"
- exit 1
- fi
- popd
- #
- # Build the AccountInfo variant.
- #
- pushd programs/account-info/
- output=$(anchor build 2>&1 > /dev/null)
- if ! [[ $output =~ "Struct field \"unchecked\" is unsafe" ]]; then
- echo "Error: expected /// CHECK error"
- exit 1
- fi
- popd
- #
- # Build the control variant.
- #
- pushd programs/ignore-non-accounts/
- if ! anchor build ; then
- echo "Error: anchor build failed when it shouldn't have"
- exit 1
- fi
- popd
- echo "Success. As expected, all builds failed that were supposed to fail."
|