aboutsummaryrefslogtreecommitdiffstats
path: root/testing/shunit2
Commit message (Collapse)AuthorAgeFilesLines
* testing/shunit2: Also allow users to executeOlliver Schinagl2019-10-241-2/+2
| | | | | | | | | Due to a silly mistake, the permissions where set incorrectly on the shunit2 binary. Only root was able to run shunit2, this of course is not intended. Fix the permissions to allow all users to be able to execute the binary. Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
* testing/shunit2: Remove (incorrect) shell globingOlliver Schinagl2019-10-081-3/+3
| | | | | | | | | | The test framework of shunit2 needs to have the TMPDIR variable set correctly. As we want to ensure we scope the temporary directory properly, lets create our own temporary path using mktemp and pass this to shunit2. We can now cleanly remove whatever is in this path. Signed-off-by: Olliver Schinagl <oliver@schinagl.nl> Closes !300
* testing/shunit2: New aportOlliver Schinagl2019-10-031-0/+27
https://github.com/kward/shunit2 shUnit2 is a xUnit based unit test framework for Bourne based shell scripts. Signed-off-by: Olliver Schinagl <oliver@schinagl.nl> Closes !277