#!/usr/bin/env bash ### Test slither "tests/*.json" --solc-ast --ignore-return-value if [ $? -ne 0 ]; then echo "--solc-ast failed" exit 1 fi slither "tests/*.sol" --solc-disable-warnings --ignore-return-value if [ $? -ne 0 ]; then echo "--solc-ast failed" exit 1 fi slither "tests/*.sol" --disable-color --ignore-return-value if [ $? -ne 0 ]; then echo "--disable-color failed" exit 1 fi