mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
18 lines
295 B
Bash
18 lines
295 B
Bash
# Common functionality for zeek-archiver's tests, originally found in its own
|
|
# test.sh script that wasn't using btest.
|
|
|
|
set -e
|
|
set -x
|
|
|
|
function queue_dir {
|
|
mkdir -p queue
|
|
echo queue
|
|
}
|
|
|
|
function archive_dir {
|
|
echo archive
|
|
}
|
|
|
|
function archive_date_dir {
|
|
echo archive/2020-07-16
|
|
}
|