summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/mghttpd01 (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-04-07testsuites: Remove all legacy networking testsVijay Kumar Banerjee6-627/+0
Update #3850
2020-04-16Canonicalize config.h includeSebastian Huber1-1/+1
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2019-12-19config: CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORSSebastian Huber1-1/+1
Rename CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS into CONFIGURE_MAXIMUM_FILE_DESCRIPTORS. Update #3753.
2019-11-25libtests: Use '-' for TAR file namesSebastian Huber1-1/+1
Use uniform pattern for all TAR file names. Use the dl* tests as a template. Update #3818.
2018-04-10testsuite/libtests: Merged nested Makefile.am files into one Makefile.amChris Johns3-38/+4
This change is part of the testsuite Makefile.am reorganization. Update #3382
2018-01-25Remove make preinstallChris Johns1-0/+1
A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.
2017-11-06tests: Use simple console driverSebastian Huber1-1/+1
Update #3170. Update #3199.
2017-10-28tests: Remove TEST_INITSebastian Huber1-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.
2017-10-23testsuite: Use printk for all test output where possible.Chris Johns1-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.
2017-07-18tests: Use floating point taskSebastian Huber1-0/+1
These tests directly or indirectly use fprintf(), etc. which may use the floating point unit. Update #3076.
2017-06-13tests: Fix build dependenciesSebastian Huber1-1/+1
See also: https://www.gnu.org/software/automake/manual/html_node/Built-Sources-Example.html
2017-05-11testsuites: Fix build dependences for generated files.Chris Johns1-2/+4
2014-12-16Delete CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEMSebastian Huber1-2/+0
This define was superfluous, undocumented and used inconsistently.
2014-12-15Enable WebSocket support in the Mongoose HTTP serverNick Withers3-13/+204
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns3-3/+3
2014-03-20tests/libtests: Use <rtems/test.h>Sebastian Huber1-2/+6
2013-12-04Update to Mongoose 3.9 at the last point before the MIT -> GPL license changeNick Withers1-25/+21
[That is, https://github.com/cesanta/mongoose/commit/04fc209644b414d915c446bb1815b55e9fe63acc. See https://groups.google.com/forum/#!topic/mongoose-users/aafbOnHonkI] The RTEMS patches described in the following emails and made to the previous Mongoose base have been applied: - http://www.rtems.org/pipermail/rtems-devel/2012-July/001345.html - http://www.rtems.org/pipermail/rtems-devel/2012-July/001343.html - http://www.rtems.org/pipermail/rtems-devel/2012-July/001346.html (except to mongoose.1, see below) ...as well as a patch very similar to that discussed at http://forums.bannister.org/ubbthreads.php?ubb=showflat&topic=7600&gonew=1 to provide poll() (which might be able to go away soon, with incoming RTEMS poll() support) mg_connect(), mg_url_encode() and mg_vprintf() were additionally marked "static" to silence warnings. mongoose.1 appears to have been removed from the upstream distribution. Note that the API's changed, for example: - A struct mg_callbacks must now be provided to mg_start(). Initialise members to NULL to disable various types of callbacks - Callback interfaces have changed significantly in general - The short form of options (e.g., "u" instead of "run_as_user") are no longer available (upstream) - The "max_request_size" options has been removed
2013-07-23Include missing <string.h>Sebastian Huber1-0/+1
2012-11-21libnetworking: Use rtems_clock_get_uptime_secondsSebastian Huber1-1/+1
This reduces the start-up time of the network stack. With a 1ms tick the ticks since boot value overflows after approximately 50 days. This problem is avoided with the rtems_clock_get_uptime_seconds() function.
2012-10-15Remove unused var "sc".Ralf Corsépius1-1/+0
2012-10-15Remove unused var "service". Move #include "test-http-client.h" after ↵Ralf Corsépius1-2/+2
std-header inclusion.
2012-10-15Move extern "C" after std-header inclusions.Ralf Corsépius1-4/+4
2012-07-12libtests/mghttpd01: New testChristian Mauderer7-0/+468