mirror of https://github.com/sudo-project/sudo.git
26 lines
661 B
Bash
Executable File
26 lines
661 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Test @include with garbage after the path name
|
|
# The standard error output is dup'd to the standard output.
|
|
#
|
|
|
|
: ${TESTSUDOERS=testsudoers}
|
|
|
|
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
|