aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2022-05-30 14:22:57 +0200
committerSven Gothel <[email protected]>2022-05-30 14:22:57 +0200
commitdda01035ea4d9d453624edaa2ee73d5c609643f3 (patch)
tree0951ef6ac74dc13d5652bc77401728e306e0fc98 /scripts
parent1f7c754e28db3e0aad57a6871264ebdb1503c28a (diff)
Add CipherpackListener, using as general lister/callback solution for encrypt/decrypt functions
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/run_native_test.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/run_native_test.sh b/scripts/run_native_test.sh
index c514389..6414410 100755
--- a/scripts/run_native_test.sh
+++ b/scripts/run_native_test.sh
@@ -44,10 +44,13 @@ do_test() {
echo elevator_verbose $elevator_verbose
echo logfile $logfile
- cd `dirname $test_exe`
+ test_dir=`dirname $test_exe`
+ echo "cd ${test_dir}"
+ cd ${test_dir}
+ pwd
ulimit -c unlimited
- $EXE_WRAPPER ${test_exe} ${*@Q}
+ $EXE_WRAPPER ./${test_basename} ${*@Q}
exit $?
}