aboutsummaryrefslogtreecommitdiff
path: root/aux/lib.sh (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove extra \\ after | in line breaksEuAndreh2021-07-271-2/+2
| | | | Implements #task-1f103822-c865-254c-f6b6-4968f2fb473e.
* aux/lib.sh: Add mkstemp and mkdtemp, and copy uuid overEuAndreh2021-07-151-0/+30
The tests were relying on the unspecified and non-standartized behaviour of "mktemp". Now they use "mkstemp()", a shim sh function to provide the expected behaviour, and an accompanying "mkdtemp()" function is also defined. To further decouple from specific implementations and OS-behaviours and quirks, a aux/lib.sh file containing both those functions was added. Its purpose is to also allow code under aux/ to not depend on specific behaviour. "mkdtemp()" had to be replicated in aux/ci/ci-build.sh, since it runs outside the repository.