summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/ftp01/init.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* testsuites: Remove all legacy networking testsVijay Kumar Banerjee2021-04-071-269/+0
| | | | Update #3850
* libio: Add POSIX user environment pointer to TCBSebastian Huber2020-02-251-2/+0
| | | | | | | | | | The IO library used a POSIX key to store an optional POSIX user environment pointer. This pulled in the POSIX keys support in every application configuration. Add a user environment pointer to the thread control block (TCB) instead. Applications which do not need the POSIX user environment will just get an overhead of one pointer per thread. Close #3882.
* config: CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORSSebastian Huber2019-12-191-1/+1
| | | | | | | Rename CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS into CONFIGURE_MAXIMUM_FILE_DESCRIPTORS. Update #3753.
* ftpd: Remove FTPD_SessionInfo_t::pass memberSebastian Huber2018-10-051-3/+22
| | | | | | There is no need to keep the password throughout the session. Update #3530.
* tests: Remove CONFIGURE_MAXIMUM_DRIVERSSebastian Huber2018-08-071-2/+0
| | | | This configuration is superfluous in these tests.
* tests: Use simple console driverSebastian Huber2017-11-061-1/+1
| | | | | Update #3170. Update #3199.
* tests: Remove TEST_INITSebastian Huber2017-10-281-2/+0
| | | | | | | | The TEST_EXTERN is a used only by the system.h style tests and they use CONFIGURE_INIT appropriately. Update #3170. Update #3199.
* testsuite: Use printk for all test output where possible.Chris Johns2017-10-231-0/+2
| | | | | | | | | | - Remove the printf support leaving the direct printk support configured with TESTS_USE_PRINTK and all other output goes via a buffered vsniprintf call to printk. - Control the test's single init for functions and global data with TEST_INIT and not CONFIGURE_INIT. They are now separate. Updates #3170.
* tests: Use floating point taskSebastian Huber2017-07-191-0/+2
| | | | | | | These tests directly or indirectly use fprintf(), etc. which may use the floating point unit. Update #3076.
* Delete CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEMSebastian Huber2014-12-161-1/+0
| | | | This define was superfluous, undocumented and used inconsistently.
* privateenv: Use POSIX keys instead of task variables.Christian Mauderer2014-03-271-0/+2
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* tests/libtests: Use <rtems/test.h>Sebastian Huber2014-03-201-2/+6
|
* ftpfs: Fix SIZE command handlingSebastian Huber2013-01-281-4/+22
| | | | | | | It is invalid to issue a SIZE command once a data transfer is in progress. For reads we issue the SIZE command before the RETR command and get a snapshot of the file size. For writes the file size is initialized to zero and incremented for each write chunk.
* ftpfs: Use SIZE commandSebastian Huber2012-11-211-0/+11
|
* libtmtests - Eliminate missing prototype warningsJoel Sherrill2012-05-111-0/+3
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-111-2/+0
| | | | | | | | | | | | Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
* 2011-10-26 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2011-10-261-2/+8
| | | | * ftp01/init.c: Account for extra FTP worker task stack sizes.
* 2011-05-06 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2011-05-061-0/+211
* ftp01/.cvsignore, ftp01/Makefile.am, ftp01/ftp01.doc, ftp01/ftp01.scn, ftp01/init.c: New files. * Makefile.am, configure.ac: Reflect changes above.