mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 02:11:59 +01:00
e03a9f2982
Signed-off-by: Janos SUTO <sj@acts.hu>
17 lines
216 B
Bash
Executable File
17 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
export LD_LIBRARY_PATH=../src
|
|
|
|
./check_parser_utils
|
|
./check_parser
|
|
./check_rules
|
|
./check_digest
|
|
./check_mydomains
|
|
./check_misc
|
|
./check_hash
|
|
./check_decoder
|