5c97379765
date: 2026-08-01T16:05:18 master commit: 3a05c03079d796f533f342489b3f681cfd21f98d
11 lines
391 B
Bash
Executable File
11 lines
391 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
HEAD=$(git rev-parse --abbrev-ref HEAD)
|
|
python test/external/process_replay/reset.py
|
|
CAPTURE_PROCESS_REPLAY=1 python test/backend/test_ops.py TestOps.test_add
|
|
git checkout master
|
|
git checkout $HEAD -- test/external/process_replay/process_replay.py
|
|
ASSERT_PROCESS_REPLAY=${ASSERT_PROCESS_REPLAY:-1} python test/external/process_replay/process_replay.py
|
|
git checkout $HEAD
|