Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/outperms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ unifdef -DFOO=1 -DFOOB=42 -UBAR -ooutfile.c if1.c
e=$?
case ${BUILD_MINGW} in
(yes) printf '%s\n' '-rw-r-----' 1>&2 ;;
(*) ls -l outfile.c | cut -d' ' -f1 1>&2 ;;
(*) ls -l outfile.c | sed 's/[.]\? .*//' 1>&2 ;;
esac
cat outfile.c
rm outfile.c
Expand Down
4 changes: 2 additions & 2 deletions tests/overperms.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
cp if1.c outfile.c
chmod 640 outfile.c
ls -l outfile.c | cut -d' ' -f1 1>&2
ls -l outfile.c | sed 's/[.]\? .*//' 1>&2
unifdef -DFOO=1 -DFOOB=42 -UBAR -m outfile.c
e=$?
case ${BUILD_MINGW} in
(yes) printf '%s\n' '-rw-r-----' 1>&2 ;;
(*) ls -l outfile.c | cut -d' ' -f1 1>&2 ;;
(*) ls -l outfile.c | sed 's/[.]\? .*//' 1>&2 ;;
esac
cat outfile.c
rm outfile.c
Expand Down