File: 017_tempfilecheck.sh

package info (click to toggle)
cowdancer 0.73
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 752 kB
  • ctags: 269
  • sloc: ansic: 3,822; sh: 481; makefile: 191; cpp: 6
file content (24 lines) | stat: -rwxr-xr-x 444 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
# test the case where there is already a tilde file.
# 0.10 uses mkstemp, so it should work.
set -ex

TESTDIR=$(mktemp -d )

(
    set -ex
    cd ${TESTDIR}
    mkdir 1/
# make a few files for testing.
    touch 1/a 1/b 1/c 1/d 1/a~~
    dd if=/dev/zero of=1/e bs=512 count=2
    cp -al 1 2
    cow-shell touch 1/a
# 0.9 deleted this file, not good. Test that it works now.
    ls 1/a~~
)
RESULT=$?

rm -rf ${TESTDIR}

exit $RESULT