tests: fixes for noclobber (#62)

This commit is contained in:
Daniel Hahler 2017-04-23 22:11:55 +02:00 committed by GitHub
parent e4f63b1271
commit 0169704cdb
2 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ Create a single v1 hash entry.
$ echo 'echo ENTERED' > sub/$AUTOENV_FILE_ENTER
$ echo 'echo LEAVE' > sub/$AUTOENV_FILE_LEAVE
$ echo :$PWD/sub/$AUTOENV_FILE_ENTER:4c403f1870af2ab5472370a42b6b2b488cefe83c:1 > $AUTOENV_AUTH_FILE
$ echo :$PWD/sub/$AUTOENV_FILE_ENTER:4c403f1870af2ab5472370a42b6b2b488cefe83c:1 >| $AUTOENV_AUTH_FILE
$ cd sub
ENTERED
@ -23,8 +23,8 @@ de-authenticating the old hash.
Re-create auth file with v1 hashes for both auth files.
$ echo :$PWD/$AUTOENV_FILE_LEAVE:882cf0333ea3c35537c9459c08d8987f25087ea9:1 > $AUTOENV_AUTH_FILE
$ echo :$PWD/$AUTOENV_FILE_ENTER:4c403f1870af2ab5472370a42b6b2b488cefe83c:1 >> $AUTOENV_AUTH_FILE
$ echo :$PWD/$AUTOENV_FILE_LEAVE:882cf0333ea3c35537c9459c08d8987f25087ea9:1 >| $AUTOENV_AUTH_FILE
$ echo :$PWD/$AUTOENV_FILE_ENTER:4c403f1870af2ab5472370a42b6b2b488cefe83c:1 >>| $AUTOENV_AUTH_FILE
Only the leave file's hash should get updated.

View File

@ -20,8 +20,8 @@ The varstash library should not get loaded always.
Now on to some stashing.
$ echo 'echo ENTER; autostash FOO=changed' > $AUTOENV_FILE_ENTER
$ echo 'echo LEAVE; autounstash' > $AUTOENV_FILE_LEAVE
$ echo 'echo ENTER; autostash FOO=changed' >| $AUTOENV_FILE_ENTER
$ echo 'echo LEAVE; autounstash' >| $AUTOENV_FILE_LEAVE
$ test_autoenv_auth_env_files
Set environment variable.