Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-06 | Test must build also when started with make regress. Use consistent | Alexander Bluhm | |
variable names in make file. | |||
2021-06-04 | unbreak regress/libexec/ld.so/nodelete test | Sebastien Marie | |
pointed by bluhm@ | |||
2021-06-02 | add regress test for RTLD_NODELETE support | Sebastien Marie | |
2021-05-09 | Add subtest for EPRT command in ftpd regression test | jan | |
2021-05-09 | Add subtest for SIZE command in ftpd regression tests | jan | |
2021-05-09 | Add subtest for RNFR and RNTO in ftpd regression tests | jan | |
2021-04-26 | Unset ftp_proxy to make test independent from environment. | Alexander Bluhm | |
2020-12-17 | Remove echo headlines. | Alexander Bluhm | |
2020-01-20 | Add a sub regression test for the nlst command in ftpd(8). | jan | |
2020-01-16 | Add ftpd(8) sub test for mkdir. | jan | |
2020-01-16 | Add sub test for ftpd(8) that test delete of files. | jan | |
2020-01-16 | Add a file put sub test for ftpd(8) regression test. | jan | |
2019-12-26 | Skip regress ftpd if there is no anonymous ftp user with existing | Alexander Bluhm | |
home directory. | |||
2019-12-22 | Add regression test for ftpd(8). | jan | |
OK bluhm@ | |||
2019-05-21 | Avoid rm(1) prompt and show out in clean target | kn | |
Errornously running regress and clean as different users may lead to interactive conformation being hidden and a seemingly stalled target. Force remove files and keep standard out/error as is to make the clean target non-interatively, actually complete and show helpful errors. | |||
2017-08-07 | Silence most clang warnings in ld.so regress. | Alexander Bluhm | |
OK kettenis@ | |||
2017-08-04 | Use C stdio instead of C++ iostream as we cannot use the latter in | Mark Kettenis | |
constructors for an "initfirst" object as the iostream objects have not been constructed yet. ok bluhm@ | |||
2017-08-04 | Use ${CC}=${CXX} here as well. | Mark Kettenis | |
ok bluhm@ | |||
2017-08-04 | Use volatile to keep clang from optimizing things too much. Force linking | Mark Kettenis | |
with the c++ command instead of cc by setting CC=${CXX}. This is a hack and a better solution is under development. Linking with c++ is necessary to make the shared libraries depend up libc++.so such that the iostream objects are constructed before we use them. ok bluhm@ | |||
2017-08-02 | Split up source code to keep clang from optimizing this into failure. | Mark Kettenis | |
ok millert@ | |||
2005-09-28 | two new regresses for dlclose. double dlopen("foo") with single | Kurt Miller | |
dlclose(foo). mozilla lazy binding example (load_object confusion) | |||
2017-08-01 | A fix is coming in the future, but in the meantime we should never declare | Theo de Raadt | |
a section(".openbsd.randomdata") variable as static or const, because the compiler optimizes out access. | |||
2017-07-10 | ld.so and nfs regress were using PROGS variable before it was added | Alexander Bluhm | |
to bsd.prog.mk. Remove local additions and use global rules. | |||
2017-03-18 | Use --disable-new-dtags here as well. | Mark Kettenis | |
2017-03-18 | The prog3 sub-tests tests DT_RPATH behaviour. Add --disable-new-dtags to | Mark Kettenis | |
the linker options such that DT_RPATH gets set instead of DT_RUNPATH on platforms using lld as the linker. | |||
2017-02-25 | Add missing includes to avoid implicit function declarations. | Jonathan Gray | |
2008-01-02 | regression test for lazy binding. | Matthieu Herrb | |
"people need never hold off on adding stuff to regress" deraadt@ | |||
2016-09-27 | Make sure that the regress target builds the libraries. Stop building a | Mark Kettenis | |
profile library and add $OpenBSD$ markers. Similar to what we do in other regress tests that build libraries such as regress/lib/libc/cxa-exit. ok bluhm@ | |||
2016-09-27 | Modernize constructor test such that it builds again and enable it. | Mark Kettenis | |
ok bluhm@ | |||
2016-09-05 | Add a regress target so that a recursive "make regress" also builds | Alexander Bluhm | |
this library as a prerequisite. | |||
2016-08-27 | ALL HAIL ELF! | Philip Guenther | |
Since <sys/param.h> isn't needed for __ELF__, pull in <stdio.h> for NULL ok deraadt@ | |||
2016-03-20 | Add regress for environ and __progname vs load-time .init functions | Philip Guenther | |
2015-06-15 | fix regress fallout due to CFLAGS vs CXXFLAGS | Theo de Raadt | |
2005-09-13 | dlopen regress tests. | Dale Rahn | |
2015-01-20 | Missing $OpenBSD$'s. | Kenneth R Westerback | |
ok deraadt@ | |||
2014-12-01 | run script with ${SHELL} | Theo de Raadt | |
2014-09-07 | Add Henri Kemppainen's copyright | Philip Guenther | |
2014-09-07 | Add dependency tests from Henri Kemppainen (duclare (at) guu.fi) | Philip Guenther | |
2014-09-07 | Add dependency tests from Henri Kemppainen (duclare (at) guu.fi). | Philip Guenther | |
order1 demonstrates why the fix in ld.so/library_subr.c rev 1.34 is necessary order2 demonstrates that that fix isn't completely correct | |||
2014-08-17 | Fix regression tests for ld.so | doug | |
It now runs correctly with 'make depend regress' | |||
2012-08-16 | basic randomdata regression tests | Matthew Dempsky | |
2014-07-16 | zap trailing newlines; "go for it" deraadt | Okan Demirmen | |
2014-02-16 | Update ld.so-cookie test which is currently broken and gets in the | Martynas Venckus | |
way of SSP testing. For some reason this diff keeps escaping from cvs commit... Basic idea: * Use dl_iterate_phdr() to iterate all loaded ELF program headers. * Check that we actually find a header for ld.so. * For ld.so, check that we find a PT_OPENBSD_RANDOMIZE segment. * For each PT_OPENBSD_RANDOMIZE segment, check that at least one byte in the memory range is non-zero. Written by matthew@. "Please go ahaed" kettenis@. "Move fast" deraadt@, a week ago. | |||
2013-12-22 | Seems gcc4 whines about an empty file as well, so just unconditionally do | Mark Kettenis | |
what we did for gcc3. | |||
2013-10-28 | include stdlib.h for exit() | Jonathan Gray | |
2008-01-02 | regression test for lazy binding. | Matthieu Herrb | |
"people need never hold off on adding stuff to regress" deraadt@ | |||
2013-10-18 | Fix building regress outside of /usr/src where the objdir | Jonathan Gray | |
behaviour is different. ok deraadt@ miod@ | |||
2013-10-15 | We do not produce "core" files, so they do not need to be deleted. they | Theo de Raadt | |
have been *.core files for a very long time. That's a lot of unlink() calls saved. | |||
2013-08-06 | Remove support for COMPILER_VERSION == gcc2. | Miod Vallat | |
Change the logic depending upon COMPILER_VERSION everywhere, to assume gcc4 is the norm and to explicitely test for gcc3 when a different behaviour is required. No functional change intended. Be sure to `make install' in share/mk before attempting to do anything. | |||
2013-07-05 | ELF_TOOLCHAIN bye bye. | Miod Vallat | |