diff options
author | Sven Gothel <[email protected]> | 2022-06-02 18:09:55 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-06-02 18:09:55 +0200 |
commit | 0f28a5a22ca97ee3af23f7df4626a38597437aea (patch) | |
tree | a7c51d0277cd59454b2425f6d293c215cd9f83bb /scripts | |
parent | 3ca93c844e03b89ef45dd7eaff0bf969e66563ad (diff) |
Java Binding 1/2 (Build clean, WIP) and minor alignments
Minor alignments
- Drop PacketInfo, return PackedHeader
- Type int -> string: payload_version, payload_version_parent
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/run_native_test.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/run_native_test.sh b/scripts/run_native_test.sh index 865c7d8..732abcd 100755 --- a/scripts/run_native_test.sh +++ b/scripts/run_native_test.sh @@ -1,7 +1,7 @@ #!/bin/bash -export elevator_debug=true -export elevator_verbose=true +#export cipherpack_debug=true +export cipherpack_verbose=true script_args="$@" sdir=`dirname $(readlink -f $0)` @@ -19,7 +19,7 @@ else logfile= fi -test_exe=${build_dir}/test/elevator/test_01_cipherpack +test_exe=${build_dir}/test/cipherpack/test_01_cipherpack if [ ! -z "$1" ] ; then test_exe=$1 shift 1 @@ -40,8 +40,8 @@ export LANG=en_US.UTF-8 do_test() { echo "script invocation: $0 ${script_args}" - echo elevator_debug $elevator_debug - echo elevator_verbose $elevator_verbose + echo cipherpack_debug $cipherpack_debug + echo cipherpack_verbose $cipherpack_verbose echo logfile $logfile echo test_exe ${test_exe} echo test_basename ${test_basename} |