Skip to content

Commit 4fd87d8

Browse files
committed
test: increase interpreter mode iterations to 1000 for consistency
1 parent 6b1fb93 commit 4fd87d8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • tests/standalone/test-aot-x18-reserve

tests/standalone/test-aot-x18-reserve/run.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,14 @@ fi
7474

7575
if [[ $1 != "--aot" ]]; then
7676
echo "============> run stress_registers.wasm (interpreter mode)"
77-
echo "Running 100 iterations in interpreter mode..."
78-
for i in $(seq 1 100); do
77+
echo "Running 1000 iterations in interpreter mode..."
78+
for i in $(seq 1 1000); do
7979
if ! ${IWASM_CMD} stress_registers.wasm 2>&1; then
8080
echo "FAILED: Crash at iteration $i"
8181
exit 1
8282
fi
8383
done
84-
echo "PASSED: 100 iterations completed without crash"
84+
echo "PASSED: 1000 iterations completed without crash"
8585
else
8686
echo "============> compile stress_registers.wasm to AOT"
8787

0 commit comments

Comments
 (0)