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