blob: 79bdadd902ede77ac7b55c2cfdfbce72cb10cffc (
plain)
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
|
#!/bin/sh
#
# Test @include with garbage after the path name
# The standard error output is dup'd to the standard output.
#
: ${TESTSUDOERS=testsudoers}
# Avoid warnings about memory leaks when there is a syntax error
ASAN_OPTIONS=detect_leaks=0; export ASAN_OPTIONS
MYUID=`\ls -ln $TESTDIR/test2.inc | awk '{print $3}'`
MYGID=`\ls -ln $TESTDIR/test2.inc | awk '{print $4}'`
echo "Testing @include with garbage after the path name"
echo ""
$TESTSUDOERS -U $MYUID -G $MYGID root id <<EOF 2>&1 | sed 's/\(syntax error\), .*/\1/'
@include sudoers.local womp womp
EOF
echo ""
echo "Testing #include with garbage after the path name"
echo ""
$TESTSUDOERS -U $MYUID -G $MYGID root id <<EOF 2>&1 | sed 's/\(syntax error\), .*/\1/'
#include sudoers.local womp womp
EOF
exit 0
|