aboutsummaryrefslogtreecommitdiff
path: root/sh/runtests.sh
AgeCommit message (Collapse)Author
2019-02-22combine test directoriesWilliam Hubbs
This fixes #295.
2015-12-21Convert OpenRC to a centralized copyright/license structureWilliam Hubbs
In the past, OpenRC was a hybrid of a centralized and file-scope license/copyright structure. I followed the instructions from the Software Freedom Law Center [1] to convert to a Centralized structure where possible, for easier future maintenance. [1] https://softwarefreedom.org/resources/2012/ManagingCopyrightInformation.html
2011-11-19make shell math operations style more succulentMike Frysinger
Convert the style: var=$((${var} + 1)) to: : $(( var += 1 )) The latter is easier to read imo. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2009-04-26Stop using needless {} in varsRoy Marples
2008-04-07Tests now work on NetBSD.Roy Marples
2008-03-24setup a bit of a test frameworkMike Frysinger