mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-28 02:13:45 +08:00
db0642ec47
date: 2025-12-18T23:23:16 master commit: 154c2334110373950bac1c36fc6e943cb1208326
11 lines
383 B
Bash
Executable File
11 lines
383 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/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
|