mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-08 04:51:23 +00:00
[lib/Fuzzer] A simple script to synchronise a fuzz test corpus with an external git repository.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237208 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
00386077e1
commit
a5a1b190d8
17
lib/Fuzzer/pull_and_push_fuzz_corpus.sh
Executable file
17
lib/Fuzzer/pull_and_push_fuzz_corpus.sh
Executable file
@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
# A simple script to synchronise a fuzz test corpus
|
||||
# with an external git repository.
|
||||
# Usage:
|
||||
# pull_and_push_fuzz_corpus.sh DIR
|
||||
# It assumes that DIR is inside a git repo and push
|
||||
# can be done w/o typing a password.
|
||||
cd $1
|
||||
git add *
|
||||
git commit -m "fuzz test corpus"
|
||||
git pull --no-edit
|
||||
for((attempt=0; attempt<100; attempt++)); do
|
||||
echo GIT PUSH $1 ATTEMPT $attempt
|
||||
if $(git push); then break; fi
|
||||
git pull --no-edit
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user