91db25c8e1
This will make things less error prone. If we fork early in the makefile instead of sharing some infra then changes to the PHP-based test infra won't break c++ tests. While I was there, I tried to fix the weird order that some tests had the suite first and some had the set first. It got hard since D773384 hasn't landed yet. When we do that, then I'll cleanup that stuff.
10 linhas
236 B
Bash
Arquivo Executável
10 linhas
236 B
Bash
Arquivo Executável
#!/bin/sh
|
|
#
|
|
# Helper for running TestExt from an fbmake build.
|
|
#
|
|
# ./run_test_ext.sh
|
|
#
|
|
HPHP_HOME=$(git rev-parse --show-toplevel)
|
|
: ${FBMAKE_BIN_ROOT=_bin}
|
|
cd $HPHP_HOME/hphp && $HPHP_HOME/$FBMAKE_BIN_ROOT/hphp/test/test "$1" "$2" "$3"
|