From 9f4be3fa4f7dae5942f206c2ce8ee661296eb279 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Wed, 15 Jan 2014 16:28:42 +0000 Subject: [PATCH] Apply patch for Albert Wong: 'Modify testit to allow filtering tests by prefixes'. llvm-svn: 199318 --- libcxx/test/testit | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libcxx/test/testit b/libcxx/test/testit index 096627f69fc2..821292efb5a3 100755 --- a/libcxx/test/testit +++ b/libcxx/test/testit @@ -80,9 +80,9 @@ IMPLEMENTED_PASS=0 afunc() { fail=0 pass=0 - if (ls *.fail.cpp > /dev/null 2>&1) + if (ls ${TEST_PREFIX}*fail.cpp > /dev/null 2>&1) then - for FILE in $(ls *.fail.cpp); do + for FILE in $(ls ${TEST_PREFIX}*fail.cpp); do if $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS -o ./$TEST_EXE > /dev/null 2>&1 then rm ./$TEST_EXE @@ -94,9 +94,9 @@ afunc() { done fi - if (ls *.pass.cpp > /dev/null 2>&1) + if (ls ${TEST_PREFIX}*pass.cpp > /dev/null 2>&1) then - for FILE in $(ls *.pass.cpp); do + for FILE in $(ls ${TEST_PREFIX}*pass.cpp); do if [ "$VERBOSE" ] then echo "Running test: " $FILE