Changeset b6c1578 in rtems


Ignore:
Timestamp:
01/05/14 17:17:08 (10 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.11, 5, master
Children:
564ce0f
Parents:
e8c7dbe7
Message:

rhealstone: Add rh prefix to all test names

This makes them easier to spot as a group in wildcard searches.

Location:
testsuites/rhealstone
Files:
6 added
6 deleted
2 edited
12 moved

Legend:

Unmodified
Added
Removed
  • testsuites/rhealstone/Makefile.am

    re8c7dbe7 rb6c1578  
    11ACLOCAL_AMFLAGS = -I ../aclocal
    22
    3 SUBDIRS = taskswitch taskpreempt ilatency mlatency semshuffle deadlockbrk
     3SUBDIRS  = rhtaskswitch
     4SUBDIRS += rhtaskpreempt
     5SUBDIRS += rhilatency
     6SUBDIRS += rhmlatency
     7SUBDIRS += rhsemshuffle
     8SUBDIRS += rhdeadlockbrk
    49
    510include $(top_srcdir)/../automake/subdirs.am
  • testsuites/rhealstone/configure.ac

    re8c7dbe7 rb6c1578  
    33AC_PREREQ([2.69])
    44AC_INIT([rtems-c-src-tests-rhealstone],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
    5 AC_CONFIG_SRCDIR([taskswitch])
     5AC_CONFIG_SRCDIR([rhtaskswitch])
    66AC_CONFIG_HEADER([config.h])
    77RTEMS_TOP([../..],[..])
     
    2626# Explicitly list all Makefiles here
    2727AC_CONFIG_FILES([Makefile
    28 taskswitch/Makefile
    29 taskpreempt/Makefile
    30 ilatency/Makefile
    31 mlatency/Makefile
    32 semshuffle/Makefile
    33 deadlockbrk/Makefile
     28rhtaskswitch/Makefile
     29rhtaskpreempt/Makefile
     30rhilatency/Makefile
     31rhmlatency/Makefile
     32rhsemshuffle/Makefile
     33rhdeadlockbrk/Makefile
    3434])
    3535AC_OUTPUT
  • testsuites/rhealstone/rhdeadlockbrk/deadlockbrk.c

    re8c7dbe7 rb6c1578  
    201201#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
    202202#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER
     203
    203204#define CONFIGURE_TICKS_PER_TIMESLICE        0
    204205#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
    205206#define CONFIGURE_MAXIMUM_SEMAPHORES 1
    206207#define CONFIGURE_MAXIMUM_TASKS 4
     208
    207209#define CONFIGURE_INIT
    208210#include <rtems/confdefs.h>
  • testsuites/rhealstone/rhmlatency/mlatency.c

    re8c7dbe7 rb6c1578  
    129129
    130130  put_time(
    131      "Rhealstone: Intertask Message Latency",
    132      telapsed,                     /* Total time of all benchmarks */
    133      BENCHMARKS - 1,               /* Total benchmarks */
    134      tloop_overhead,               /* Overhead of loops */
    135      treceive_overhead             /* Overhead of recieve call and task switch */
     131   "Rhealstone: Intertask Message Latency",
     132   telapsed,                     /* Total time of all benchmarks */
     133   BENCHMARKS - 1,               /* Total benchmarks */
     134   tloop_overhead,               /* Overhead of loops */
     135   treceive_overhead             /* Overhead of recieve call and task switch */
    136136  );
    137137
     
    147147#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES     1
    148148#define CONFIGURE_TICKS_PER_TIMESLICE        0
    149 #define CONFIGURE_INIT
    150149#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
    151150
     151#define CONFIGURE_INIT
    152152#include <rtems/confdefs.h>
Note: See TracChangeset for help on using the changeset viewer.