From 1187c062cd042c7232aff7fe9e4cbb935e87045c Mon Sep 17 00:00:00 2001 From: qian-hu <88806138+qian-hu@users.noreply.github.com> Date: Mon, 8 Jul 2024 00:43:28 -0400 Subject: [PATCH] Add ProposalOperations tests to run-kontrol.sh script --- test/kontrol/scripts/run-kontrol.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/kontrol/scripts/run-kontrol.sh b/test/kontrol/scripts/run-kontrol.sh index 3df99eef..a3c21760 100755 --- a/test/kontrol/scripts/run-kontrol.sh +++ b/test/kontrol/scripts/run-kontrol.sh @@ -110,6 +110,13 @@ if [ "$SCRIPT_TESTS" == true ]; then "EscrowOperationsTest.testCannotUnlockBeforeMinLockTime" "EscrowOperationsTest.testCannotLockUnlockInRageQuitEscrowState" "EscrowOperationsTest.testCannotWithdrawBeforeEthClaimTimelockElapsed" + "ProposalOperationsTest.testCannotProposeInInvalidState" + "ProposalOperationsTest.testCannotScheduleInInvalidStates" + "ProposalOperationsTest.testCannotScheduleSubmissionAfterLastVetoSignalling" + "ProposalOperationsTest.testCanceledOrExecutedActionsCannotBeRescheduled" + "ProposalOperationsTest.testCannotScheduleBeforeMinTimelock" + "ProposalOperationsTest.testSchedulingSuccess" + "ProposalOperationsTest.testCannotExecuteBeforeEmergencyProtectionTimelock" ) elif [ "$CUSTOM_TESTS" != 0 ]; then test_list=( "${@:${CUSTOM_TESTS}}" )