~mmach/netext73/busybox

« back to all changes in this revision

Viewing changes to shell/hush_test/hush-misc/source3.tests

  • Committer: mmach
  • Date: 2021-04-14 13:54:24 UTC
  • Revision ID: netbit73@gmail.com-20210414135424-8x3fxf716zs4wflb
1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Test both empty file, and one-empty-line file
 
2
echo >sourced1
 
3
true >sourced2
 
4
false; . ./sourced1; echo Zero:$?
 
5
false; . ./sourced2; echo Zero:$?
 
6
rm sourced1 sourced2