DCAgent2/bfcl-parity
0191
1#!/bin/bash2# Run evaluation script and capture exit code3 4cd /tests5python3 /tests/evaluate.py6EXIT_CODE=$?7 8# Write reward based on exit code9if [ $EXIT_CODE -eq 0 ]; then10 echo "1" > /logs/verifier/reward.txt11else12 echo "0" > /logs/verifier/reward.txt13fi14 15echo "Test execution completed with exit code: $EXIT_CODE"16exit 017 