mirror of
https://github.com/versity/scoutfs.git
synced 2025-12-23 05:25:18 +00:00
Export PATH once in run-tests
Might as well just export the PATH once as we change it, no need to export it in every test iteration. Signed-off-by: Zach Brown <zab@versity.com>
This commit is contained in:
@@ -535,7 +535,7 @@ fi
|
|||||||
. funcs/filter.sh
|
. funcs/filter.sh
|
||||||
|
|
||||||
# give tests access to built binaries in src/, prefer over installed
|
# give tests access to built binaries in src/, prefer over installed
|
||||||
PATH="$PWD/src:$PATH"
|
export PATH="$PWD/src:$PATH"
|
||||||
|
|
||||||
msg "running tests"
|
msg "running tests"
|
||||||
> "$T_RESULTS/skip.log"
|
> "$T_RESULTS/skip.log"
|
||||||
@@ -580,7 +580,6 @@ for t in $tests; do
|
|||||||
for v in ${!T_*}; do
|
for v in ${!T_*}; do
|
||||||
eval export $v
|
eval export $v
|
||||||
done
|
done
|
||||||
export PATH # give test access to scoutfs binary
|
|
||||||
|
|
||||||
# prepare to compare output to golden output
|
# prepare to compare output to golden output
|
||||||
test -e "$T_RESULTS/output" || cmd mkdir -p "$T_RESULTS/output"
|
test -e "$T_RESULTS/output" || cmd mkdir -p "$T_RESULTS/output"
|
||||||
|
|||||||
Reference in New Issue
Block a user