stop prefixing test to TEST_PATH
It is good design to not repeat things that are redundant, but this keeps anoying me that I can't tab complete this. no-one should be used to the syntax yet so now is the time to change it.
Esse commit está contido em:
@@ -304,7 +304,7 @@ stdout = subprocess.Popen(
|
||||
'tools/verify_to_json.php',
|
||||
'run_verify.sh',
|
||||
'interp',
|
||||
'zend/all',
|
||||
'test/zend/all',
|
||||
'_bin',
|
||||
],
|
||||
stdout=subprocess.PIPE,
|
||||
|
||||
@@ -51,7 +51,7 @@ fi
|
||||
: ${HHVM:=$DEFAULT_HHVM}
|
||||
: ${VERIFY_HHBC:=$DEFAULT_VERIFY_HHBC}
|
||||
: ${VQ:=jit}
|
||||
: ${TEST_PATH:=vm}
|
||||
: ${TEST_PATH:=test/vm}
|
||||
|
||||
cd $HPHP_HOME/hphp
|
||||
|
||||
@@ -59,11 +59,11 @@ cd $HPHP_HOME/hphp
|
||||
|
||||
skip_list=
|
||||
for x in $QTESTS_SKIP ; do
|
||||
skip_list="$skip_list test/$TEST_PATH/$x"
|
||||
skip_list="$skip_list $TEST_PATH/$x"
|
||||
done
|
||||
|
||||
qtests=$(comm -23 \
|
||||
<(find test/$TEST_PATH -name \*.php -o -name \*.hhas | sort) \
|
||||
<(find $TEST_PATH -name \*.php -o -name \*.hhas | sort) \
|
||||
<(echo $skip_list|sed -e 's/ /\n/g'|sort))
|
||||
|
||||
repo_args="-v Repo.Local.Mode=-- -v Repo.Central.Path=$VERIFY_HHBC"
|
||||
|
||||
Referência em uma Nova Issue
Bloquear um usuário