| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 | #!/bin/sh# StarPU --- Runtime system for heterogeneous multicore architectures.## Copyright (C) 2009, 2010  Université de Bordeaux# Copyright (C) 2010, 2011  CNRS## StarPU 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.## StarPU 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=$PWDntests=0nfailed=0nsucess=0print_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}echoecho "**********************"echo "TEST synchronous tasks"echo "**********************"echotest_with_timeout 10 "./sync_tasks_overhead -i 10000" 2> /dev/nullechoecho "***********************"echo "TEST asynchronous tasks"echo "***********************"echotest_with_timeout 10 "./async_tasks_overhead -i 20000" 2> /dev/nullechoecho "**************"echo "TEST increment"echo "**************"echotest_with_timeout 10 "../../examples/incrementer/incrementer" 2> /dev/nullechoecho "**********"echo "TEST tag 1"echo "**********"echotest_with_timeout 60 "../../examples/tag_example/tag_example -iter 1000" 2> /dev/nullechoecho "**********"echo "TEST tag 2"echo "**********"echotest_with_timeout 10 "../../examples/tag_example/tag_example2 -iter 100" 2> /dev/nullechoecho "*******"echo "SUMMARY"echo "*******"echoprint_summary
 |