From 107e5455f120ebc3404f624f042b81814d03a545 Mon Sep 17 00:00:00 2001 From: Markus Kauppila Date: Sun, 28 Aug 2011 18:58:13 +0300 Subject: [PATCH] Refined install script to be more helpful. --- test/test-automation/Makefile.am | 1 - test/test-automation/build-scripts/install-tests.sh | 6 ++++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/test/test-automation/Makefile.am b/test/test-automation/Makefile.am index 9e3fce2d4..79e73f169 100644 --- a/test/test-automation/Makefile.am +++ b/test/test-automation/Makefile.am @@ -15,7 +15,6 @@ SUBDIRS = src/libSDLtest \ tests/testevents \ tests/testkeyboard -##all-local: install install: install-runner install-tests install-runner: $(SHELL) build-scripts/install-runner.sh diff --git a/test/test-automation/build-scripts/install-tests.sh b/test/test-automation/build-scripts/install-tests.sh index 0fb441e01..fdbd707d0 100755 --- a/test/test-automation/build-scripts/install-tests.sh +++ b/test/test-automation/build-scripts/install-tests.sh @@ -3,8 +3,6 @@ DIRECTORY="tests" EXT="error" -#echo "Installing test suites to $DIRECTORY" - mkdir $DIRECTORY > /dev/null 2>&1 PLATFORM="$(uname)" @@ -21,3 +19,7 @@ do done echo "Test suites installed." +echo "Run './runner --show-tests' to see the available tests" +echo "and './runner' to execute them" +echo "" +echo "For more commands: './runner --help'"