summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxstack02
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-26 16:05:45 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-05-02 07:11:03 +0200
commitb422aa3f4a8ecb27bc76c3c5f29d34e007564315 (patch)
tree3306e82c8ea3b7d6247d94f8fc04d1953725fe8d /testsuites/psxtests/psxstack02
parentDrop executable permissions on .[ch] files (diff)
downloadrtems-b422aa3f4a8ecb27bc76c3c5f29d34e007564315.tar.bz2
tests: Remove configure feature checks
Update #3409.
Diffstat (limited to 'testsuites/psxtests/psxstack02')
-rw-r--r--testsuites/psxtests/psxstack02/init.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/testsuites/psxtests/psxstack02/init.c b/testsuites/psxtests/psxstack02/init.c
index 4fc1476812..2f7ba56e68 100644
--- a/testsuites/psxtests/psxstack02/init.c
+++ b/testsuites/psxtests/psxstack02/init.c
@@ -54,7 +54,6 @@ void *Test_Thread(void *arg)
void *POSIX_Init(void *argument)
{
-#if HAVE_DECL_PTHREAD_ATTR_SETSTACK
int sc;
pthread_t id;
pthread_attr_t attr;
@@ -83,10 +82,7 @@ void *POSIX_Init(void *argument)
delay_request.tv_nsec = 5 * 100000000;
sc = nanosleep( &delay_request, NULL );
rtems_test_assert( !sc );
-#else
- puts( "pthread_set_stack not supported - SKIPPING TEST CASE" );
-#endif
-
+
TEST_END();
rtems_test_exit(0);