Checking in vendor folder for ease of using go get.
This commit is contained in:
parent
7a1251853b
commit
cdb4b5a1d0
3554 changed files with 1270116 additions and 0 deletions
24
vendor/git.apache.org/thrift.git/test/rebuild_known_failures.sh
generated
vendored
Normal file
24
vendor/git.apache.org/thrift.git/test/rebuild_known_failures.sh
generated
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ -z $1 ]; then
|
||||
echo Usage: $0 LANGUAGE
|
||||
echo Re-list all failures of a specific LANGUAGE into known_failures_Linux.json
|
||||
echo LANGUAGE should be library name like cpp, java, py etc
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z $PYTHON]; then
|
||||
PYTHON=python
|
||||
fi
|
||||
|
||||
TARGET_LANG=$1
|
||||
OUT_FILE=known_failures_Linux.json
|
||||
echo Rebuilding known failures for $TARGET_LANG
|
||||
|
||||
TMPFILE=.__tmp__rebuild__
|
||||
grep -v -e "\"$1-" -e "\-$1_" $OUT_FILE > $TMPFILE
|
||||
mv $TMPFILE $OUT_FILE
|
||||
$PYTHON test.py --client $1
|
||||
$PYTHON test.py -U merge
|
||||
$PYTHON test.py --server $1
|
||||
$PYTHON test.py -U merge
|
Loading…
Add table
Add a link
Reference in a new issue