File: t20-hooks-bug235.sh

package info (click to toggle)
backup-manager 0.7.14-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,656 kB
  • sloc: sh: 4,041; perl: 1,176; makefile: 215
file content (31 lines) | stat: -rw-r--r-- 755 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#! /usr/bin/env bash

set -e

echo "Test $0 disabled. I don't think this ever passed, and the bug tracker entry for it is gone"
exit 0



export BM_TEST_EXIT_CODE_EXPECTED=10

# Each test script should include testlib.sh
source testlib.sh
# When the test is ready, set this to false for nice outputs.
# if you want to see what happens, use those flags
# verbose="true"
# warnings="true"

# The conffile part of the test, see confs/* for details.
source confs/base.conf
export BM_PRE_BACKUP_COMMAND="/NON_EXISTANT_FILE.pre.sh"
export BM_POST_BACKUP_COMMAND="NON_EXISTANT_FILE.post.sh"
source $locallib/sanitize.sh

# The test actions
bm_init_env
bm_init_today
exec_pre_command
# FIXME: try to catch the exit 10 that will be thrown
exec_post_command
exit 0