1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/bin/sh
### Find script directory and load helper functions.
scriptdir=$(CDPATH='' cd -- "$(dirname -- "$0")" && pwd -P)
. "${scriptdir}/shared_test_functions.sh"
### Project-specific constants and setup
out="${bindir}/tests-output"
out_valgrind="${bindir}/tests-valgrind"
# Constants used in multiple scenarios for this project.
password="hunter2"
# Find system scrypt, and ensure it supports -P.
system_scrypt=$( find_system scrypt "enc -P" )
### Run tests using project-specific constants
run_scenarios
|