16 lines
599 B
Bash
Executable File
16 lines
599 B
Bash
Executable File
#!/bin/bash
|
|
cd /Users/leidianyayi/Documents/GitHub/ModelTest20260714/GLM5.2
|
|
echo "=== smoke1 (load+render) ==="
|
|
node tools/smoke.mjs 2>&1 | grep -E "canvas|CONSOLE ERRORS"
|
|
echo "=== smoke4 (state) ==="
|
|
node tools/smoke4.mjs 2>&1 | grep "ERRORS"
|
|
echo "=== smoke5 (transitions+endings) ==="
|
|
node tools/smoke5.mjs 2>&1 | grep -E "transition_to_plaza|house_stopped|ending_E|ERRORS"
|
|
echo "=== probeclue ==="
|
|
node tools/probeclue.mjs 2>&1 | tail -1
|
|
echo "=== probeT14 ==="
|
|
node tools/probeT14.mjs 2>&1 | tail -1
|
|
echo "=== probechoice ==="
|
|
node tools/probechoice.mjs 2>&1 | tail -1
|
|
echo "=== ALL DONE ==="
|