summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/runpaltests.sh
diff options
context:
space:
mode:
authorMatt Mitchell <mmitche@microsoft.com>2015-02-24 11:15:18 -0800
committerMatt Mitchell <mmitche@microsoft.com>2015-02-24 11:35:05 -0800
commit24474b60b44ae78690983468af545c8c2eba9c0e (patch)
treedaa16780170d6d82d9baa20e6cb5e7e6bca5b16e /src/pal/tests/palsuite/runpaltests.sh
parentbc7fb17b601b77f04827df2952582f25f53fc69f (diff)
downloadcoreclr-24474b60b44ae78690983468af545c8c2eba9c0e.tar.gz
coreclr-24474b60b44ae78690983468af545c8c2eba9c0e.tar.bz2
coreclr-24474b60b44ae78690983468af545c8c2eba9c0e.zip
Make the delta for this test += the targeted value
Diffstat (limited to 'src/pal/tests/palsuite/runpaltests.sh')
-rwxr-xr-xsrc/pal/tests/palsuite/runpaltests.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pal/tests/palsuite/runpaltests.sh b/src/pal/tests/palsuite/runpaltests.sh
index 60b7b145ac..c62022f152 100755
--- a/src/pal/tests/palsuite/runpaltests.sh
+++ b/src/pal/tests/palsuite/runpaltests.sh
@@ -70,6 +70,7 @@ do
# Create path to a test executable to run
TEST_COMMAND="$PAL_TEST_BUILD/$TEST_NAME"
+ echo -n .
$TEST_COMMAND
# Get exit code of the test process.
@@ -80,7 +81,8 @@ do
NUMBER_OF_PASSED_TESTS=$(($NUMBER_OF_PASSED_TESTS + 1))
else
FAILED_TEST="$TEST_NAME. Exit code: $TEST_EXIT_CODE"
- echo FAILED: $FAILED_TEST
+ echo
+ echo FAILED: $FAILED_TEST
echo
# Store the name of the failed test in the list of failed tests.