| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 | 
							- #!/bin/sh
 
- #
 
- # StarPU
 
- # Copyright (C) INRIA 2008-2009 (see AUTHORS file)
 
- #
 
- # This program is free software; you can redistribute it and/or modify
 
- # it under the terms of the GNU Lesser General Public License as published by
 
- # the Free Software Foundation; either version 2.1 of the License, or (at
 
- # your option) any later version.
 
- #
 
- # This program is distributed in the hope that it will be useful, but
 
- # WITHOUT ANY WARRANTY; without even the implied warranty of
 
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
- #
 
- # See the GNU Lesser General Public License in COPYING.LGPL for more details.
 
- #
 
- TEST_DIR=$PWD
 
- ntests=0
 
- nfailed=0
 
- nsucess=0
 
- print_summary() {
 
- 	if test $nfailed = 0; then
 
- 		echo "**** All tests are successful ****"
 
- 	else
 
- 		echo "$nfailed test(s) failed out of $ntests" 
 
- 	fi
 
- }
 
- test_with_timeout() {
 
- 	timeout=$1
 
-         application=$2
 
- 	ntests=$(($ntests + 1))
 
- 	echo "$application"
 
- 	$application > /dev/null 2> /dev/null & _pid_appli=$!;
 
- 	(sleep $timeout ; kill -9 $_pid_appli 2> /dev/null) & _pid_killer=$!
 
- 	wait $_pid_appli
 
- 	ret=$?
 
- 	kill $_pid_killer 2> /dev/null
 
- 	if test $ret = 0; then
 
- 		echo "	SUCCESS"
 
- 		nsuccess=$(($nsuccess + 1))
 
- 	else
 
- 		case $ret in
 
- 			137) # sigkill
 
- 			echo "	TEST TIMEOUT"
 
- 			;;
 
- 			139)
 
- 			echo "	TEST FAILED: SIGSEV"
 
- 			;;
 
- 			*)
 
- 			echo "	TEST FAILED (ret = $ret)"
 
- 		esac
 
- 		nfailed=$(($nfailed + 1))
 
- 	fi
 
- }
 
- echo
 
- echo "**********************"
 
- echo "TEST synchronous tasks"
 
- echo "**********************"
 
- echo
 
- test_with_timeout 10 "./sync_tasks_overhead -i 10000" 2> /dev/null 
 
- echo
 
- echo "***********************"
 
- echo "TEST asynchronous tasks"
 
- echo "***********************"
 
- echo
 
- test_with_timeout 10 "./async_tasks_overhead -i 20000" 2> /dev/null 
 
- echo
 
- echo "**************"
 
- echo "TEST increment"
 
- echo "**************"
 
- echo
 
- test_with_timeout 10 "../../examples/incrementer/incrementer" 2> /dev/null 
 
- echo
 
- echo "**********"
 
- echo "TEST tag 1"
 
- echo "**********"
 
- echo
 
- test_with_timeout 60 "../../examples/tag_example/tag_example -iter 1000" 2> /dev/null 
 
- echo
 
- echo "**********"
 
- echo "TEST tag 2"
 
- echo "**********"
 
- echo
 
- test_with_timeout 10 "../../examples/tag_example/tag_example2 -iter 100" 2> /dev/null 
 
- echo
 
- echo "*******"
 
- echo "SUMMARY"
 
- echo "*******"
 
- echo
 
- print_summary
 
 
  |