2025-06-13 15:59:36 +09:00
|
|
|
#!/bin/bash
|
|
|
|
|
2025-06-22 10:51:42 +09:00
|
|
|
set -e
|
2025-06-13 15:59:36 +09:00
|
|
|
HEAD=$(git rev-parse --abbrev-ref HEAD)
|
|
|
|
python test/external/process_replay/reset.py
|
|
|
|
CAPTURE_PROCESS_REPLAY=1 python test/test_ops.py TestOps.test_add
|
|
|
|
git checkout master
|
|
|
|
git checkout $HEAD -- test/external/process_replay/process_replay.py
|
2025-06-22 10:51:42 +09:00
|
|
|
ASSERT_PROCESS_REPLAY=${ASSERT_PROCESS_REPLAY:-1} python test/external/process_replay/process_replay.py
|
2025-06-13 15:59:36 +09:00
|
|
|
git checkout $HEAD
|