aboutsummaryrefslogtreecommitdiffstats
path: root/test-all
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-04-04 20:57:10 +0200
committerMattias Andrée <maandree@kth.se>2016-04-04 20:57:10 +0200
commit76593f91498d06e74f92a04e82cc096e44588eec (patch)
tree3b3a3954dca378aa097d26240e3ddfb320e3f84b /test-all
parentsome improvements (diff)
downloadbase-util-tests-76593f91498d06e74f92a04e82cc096e44588eec.tar.gz
base-util-tests-76593f91498d06e74f92a04e82cc096e44588eec.tar.bz2
base-util-tests-76593f91498d06e74f92a04e82cc096e44588eec.tar.xz
add ability to test multi-call binaries
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'test-all')
-rwxr-xr-xtest-all4
1 files changed, 4 insertions, 0 deletions
diff --git a/test-all b/test-all
index dd7abea..d4acef8 100755
--- a/test-all
+++ b/test-all
@@ -16,6 +16,10 @@ if test -n "${EPATH}"; then
for c in $(all); do
eval "export $(echo $c | tr '[a-z-]' '[A-Z_]')='$(realpath "$(env PATH="${EPATH}" "$(which which)" $c)")'"
done
+elif test -n "${EXECBOX}"; then
+ for c in $(all); do
+ eval "export $(echo $c | tr '[a-z-]' '[A-Z_]')='exec-as $(realpath "${EXECBOX}") $c'"
+ done
elif test -n "${IN_PATH}"; then
for c in $(all); do
eval "export $(echo $c | tr '[a-z-]' '[A-Z_]')='$(realpath "$(which $c)")'"