OSDN Git Service

am fa01b4ca: Merge changes Ie1705960,I8b94351f,I661540a9,Id2dbdcab,I1223578c, ...
[android-x86/external-toybox.git] / tests / pwd.test
1 #!/bin/bash
2
3 [ -f testing.sh ] && . testing.sh
4
5 #testing "name" "command" "result" "infile" "stdin"
6
7 #TODO: Find better tests
8
9 testing "pwd" "[ $(stat -c %i "$(pwd)") = $(stat -c %i .) ] && echo yes" \
10         "yes\n" "" ""
11 testing "pwd -P" "[ $(stat -c %i "$(pwd -P)") = $(stat -c %i .) ] && echo yes" \
12         "yes\n" "" ""
13
14
15 ln -s . sym
16 cd sym
17 testing "pwd" "[ $(stat -c %i "$(pwd)") = $(stat -c %i "$PWD") ] && echo yes" \
18         "yes\n" "" ""
19 testing "pwd -P" "[ $(stat -c %i "$(pwd -P)") = $(stat -c %i "$PWD") ] || echo yes" \
20         "yes\n" "" ""
21 cd ..
22 rm sym
23
24 export PWD=walrus
25 testing "pwd (bad PWD)" "[ "$(pwd)" = "$(cd . ; pwd)" ] && echo yes" \
26         "yes\n" "" ""