summaryrefslogtreecommitdiffstats
path: root/run-tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'run-tests.sh')
-rwxr-xr-xrun-tests.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/run-tests.sh b/run-tests.sh
index fa924dc916a..bc5b8a0da15 100755
--- a/run-tests.sh
+++ b/run-tests.sh
@@ -164,8 +164,7 @@ function run_tests()
return $match
}
RES=0
- for t in $(find ${regression_testsdir}/tests | grep -v geo-rep \
- | LC_COLLATE=C sort) ; do
+ for t in $(find ${regression_testsdir}/tests | LC_COLLATE=C sort) ; do
if match $t "$@" ; then
if [ -d $t ] ; then
echo "Running tests in directory $t"
@@ -216,7 +215,6 @@ function is_bad_test ()
function run_all ()
{
find ${regression_testsdir}/tests -name '*.t' \
- | grep -v geo-rep \
| LC_COLLATE=C sort \
| while read t; do
old_cores=$(ls /core.* 2> /dev/null | wc -l)