source: rtems/testsuites/tmtests/configure.ac @ 51a95ff9

4.115
Last change on this file since 51a95ff9 was b6343c6, checked in by Joel Sherrill <joel.sherrill@…>, on 07/10/14 at 19:20:39

Enhance Semaphore Blocking and Readying Time Test Cases

tm02 and tm03 were modified to be reused for multiple configurations
of RTEMS Classic API Semaphores. This added tm31-36. The messages for
tm02 and tm03 were modified to indicate the semaphore attributes.
tm31 - tm36 were added. This resulted in the following cases:

tm02 - rtems_semaphore_obtain: Counting/FIFO not available caller blocks
tm03 - rtems_semaphore_release: Counting/FIFO task readied preempts caller
tm31 - rtems_semaphore_obtain: Counting/priority not available caller blocks
tm32 - rtems_semaphore_release: Counting/priority task readied preempts caller
tm33 - rtems_semaphore_obtain: Binary/FIFO not available caller blocks
tm34 - rtems_semaphore_release: Binary/FIFO task readied preempts caller
tm35 - rtems_semaphore_obtain: Binary/priority not available caller blocks
tm36 - rtems_semaphore_release: Binary/priority task readied preempts caller

  • Property mode set to 100644
File size: 1.2 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-tests-tmtests],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
5AC_CONFIG_SRCDIR([tm01])
6AC_CONFIG_HEADER([config.h])
7RTEMS_TOP([../..],[..])
8
9RTEMS_CANONICAL_TARGET_CPU
10
11AM_INIT_AUTOMAKE([no-define foreign 1.12.2])
12AM_MAINTAINER_MODE
13
14RTEMS_ENV_RTEMSBSP
15RTEMS_CHECK_RTEMS_TEST_NO_PAUSE
16
17RTEMS_PROJECT_ROOT
18
19RTEMS_PROG_CC_FOR_TARGET
20
21RTEMS_CANONICALIZE_TOOLS
22
23RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
24
25OPERATION_COUNT=${OPERATION_COUNT-100}
26AC_SUBST(OPERATION_COUNT)
27
28# Explicitly list all Makefiles here
29AC_CONFIG_FILES([Makefile
30tmcontext01/Makefile
31tmck/Makefile
32tmoverhd/Makefile
33tm01/Makefile
34tm02/Makefile
35tm03/Makefile
36tm04/Makefile
37tm05/Makefile
38tm06/Makefile
39tm07/Makefile
40tm08/Makefile
41tm09/Makefile
42tm10/Makefile
43tm11/Makefile
44tm12/Makefile
45tm13/Makefile
46tm14/Makefile
47tm15/Makefile
48tm16/Makefile
49tm17/Makefile
50tm18/Makefile
51tm19/Makefile
52tm20/Makefile
53tm21/Makefile
54tm22/Makefile
55tm23/Makefile
56tm24/Makefile
57tm25/Makefile
58tm26/Makefile
59tm27/Makefile
60tm28/Makefile
61tm29/Makefile
62tm30/Makefile
63tm31/Makefile
64tm32/Makefile
65tm33/Makefile
66tm34/Makefile
67tm35/Makefile
68tm36/Makefile
69])
70AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.