summaryrefslogtreecommitdiffstats
path: root/tests/test3.tst
blob: 20ecce13570d80fd3d70f7a132d965fa57ef745d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

source ${CURDIR}/tests/functions

#
# Test that chroot with one arg is getting passed though a shell (via os.system())
#
header "testing that args are passed correctly to a shell"
runcmd "$MOCKCMD --offline --chroot 'touch /tmp/{foo,bar,baz}'"
if [ ! -f $CHROOT/tmp/foo ] || [ ! -f $CHROOT/tmp/bar ] || [ ! -f $CHROOT/tmp/baz ]; then
    echo "'mock --chroot' with one argument is not being passed to os.system()"
    exit 1
fi