Home | History | Annotate | Download | only in tests
      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 "-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 "-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 "(bad PWD)" "[ "$(pwd)" = "$(cd . ; pwd)" ] && echo yes" \
     26 	"yes\n" "" ""
     27