1 #!/bin/sh 2 # Copyright (c) 2002, Intel Corporation. All rights reserved. 3 # Created by: julie.n.fleischer REMOVE-THIS AT intel DOT com 4 # This file is licensed under the GPL license. For the full content 5 # of this license, see the COPYING file at the top level of this 6 # source tree. 7 # 8 # Run key timers tests from the conformance/interfaces area. 9 10 keytestlist="clock_gettime/1-2.test \ 11 clock_gettime/8-2.test \ 12 clock_nanosleep/1-1.test \ 13 clock_nanosleep/1-3.test \ 14 clock_nanosleep/2-2.test \ 15 clock_nanosleep/11-1.test \ 16 clock_settime/4-1.test \ 17 clock_settime/7-1.test \ 18 clock_settime/19-1.test \ 19 nanosleep/2-1.test \ 20 nanosleep/10000-1.test \ 21 timer_getoverrun/2-2.test \ 22 timer_getoverrun/6-3.test \ 23 timer_gettime/6-3.test \ 24 timer_settime/3-1.test \ 25 timer_settime/12-1.test \ 26 timer_settime/5-2.test \ 27 timer_settime/8-4.test \ 28 timer_settime/9-1.test \ 29 timer_settime/9-2.test \ 30 timer_settime/13-1.test" 31 #timer_getoverrun/2-3.test 32 33 currdir=`pwd` 34 basedir=$currdir/../../ 35 36 cd $basedir 37 for test in $keytestlist; do 38 conformance/interfaces/$test 39 done 40 41 cd $currdir 42 43