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:
ptarjan
2013-04-11 12:44:50 -07:00
commit de Sara Golemon
commit 36b9a96335
2 arquivos alterados com 4 adições e 4 exclusões
+1 -1
Ver Arquivo
@@ -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,
+3 -3
Ver Arquivo
@@ -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"