mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 00:31:58 +01:00
644ff2b630
Signed-off-by: Janos SUTO <sj@acts.hu>
18 lines
236 B
Bash
Executable File
18 lines
236 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
|
|
./check_attachments
|