summaryrefslogtreecommitdiffstats
path: root/c/src/tests
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-04-22 16:53:46 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-04-22 16:53:46 +0000
commit8389628c1be0f40fb94c1d2859138a09616acf06 (patch)
tree0d58d8f544ace76749af5bfb6b0adac7f5cc191e /c/src/tests
parentaddition of optional user provided stack allocator means that we can not (diff)
downloadrtems-8389628c1be0f40fb94c1d2859138a09616acf06.tar.bz2
updates from Tony Bennett
Diffstat (limited to 'c/src/tests')
-rw-r--r--c/src/tests/sptests/spfatal/fatal.c3
-rw-r--r--c/src/tests/sptests/spfatal/system.h3
-rw-r--r--c/src/tests/tmtests/tm21/task1.c2
-rw-r--r--c/src/tests/tools/generic/difftest4
4 files changed, 7 insertions, 5 deletions
diff --git a/c/src/tests/sptests/spfatal/fatal.c b/c/src/tests/sptests/spfatal/fatal.c
index 3b2228bffd..fa3dd547bd 100644
--- a/c/src/tests/sptests/spfatal/fatal.c
+++ b/c/src/tests/sptests/spfatal/fatal.c
@@ -57,7 +57,8 @@ rtems_unsigned32 First_Time_Through;
void Process_case();
rtems_extension Fatal_extension(
- rtems_unsigned32 error
+ rtems_unsigned32 error,
+ boolean is_internal
)
{
int index;
diff --git a/c/src/tests/sptests/spfatal/system.h b/c/src/tests/sptests/spfatal/system.h
index 13f8a9db4a..a1e3578a64 100644
--- a/c/src/tests/sptests/spfatal/system.h
+++ b/c/src/tests/sptests/spfatal/system.h
@@ -28,7 +28,8 @@ void put_error(
);
rtems_extension Fatal_extension(
- rtems_unsigned32 error
+ rtems_unsigned32 error,
+ boolean is_internal
);
rtems_task Task_1(
diff --git a/c/src/tests/tmtests/tm21/task1.c b/c/src/tests/tmtests/tm21/task1.c
index a7a6a09ed7..5529cd5182 100644
--- a/c/src/tests/tmtests/tm21/task1.c
+++ b/c/src/tests/tmtests/tm21/task1.c
@@ -70,7 +70,7 @@ rtems_task Task_1(
status = rtems_message_queue_create(
index,
- 1,
+ OPERATION_COUNT,
16,
RTEMS_DEFAULT_ATTRIBUTES,
&id
diff --git a/c/src/tests/tools/generic/difftest b/c/src/tests/tools/generic/difftest
index 1f76cdf356..11d9ba9e2f 100644
--- a/c/src/tests/tools/generic/difftest
+++ b/c/src/tests/tools/generic/difftest
@@ -1,6 +1,7 @@
#!KSHELL -p
#
# Check test results against official output in the src tree
+#
# $Id$
#
@@ -64,8 +65,7 @@ args=$*
# Run the tests
#
-cd $RTEMS_HOME/tests/$logdir ||
- fatal "No log directory: $RTEMS_HOME/tests/$logdir"
+cd $RTEMS_HOME/tests/$logdir || fatal "No log directory: $RTEMS_HOME/tests/$logdir"
tests="$args"
if [ ! "$tests" ]