commit 8a86203b94a0368ac2f3e88dfcd269e601b4beb4 from: Lucas via: Stefan Sperling date: Mon Feb 06 14:58:16 2023 UTC add xfail test for 'got status' ignore patterns with a trailing slash Patch by Lucas commit - 49351f3bf4ab5a99f1b0653e176e01ab5988acde commit + 8a86203b94a0368ac2f3e88dfcd269e601b4beb4 blob - 6168491dcdae298a50000ab17dd1b5af061cce7e blob + d822260020e8a31a235f66e7a1a6e8e9cae92b9c --- regress/cmdline/status.sh +++ regress/cmdline/status.sh @@ -695,6 +695,36 @@ EOF test_done "$testroot" "$ret" } +test_status_gitignore_trailing_slashes() { + local testroot=`test_init status_gitignore_trailing_slashes` + + got checkout $testroot/repo $testroot/wt > /dev/null + ret=$? + if [ $ret -ne 0 ]; then + test_done "$testroot" "$ret" + return 1 + fi + + echo "unversioned file" > $testroot/wt/foo + echo "unversioned file" > $testroot/wt/epsilon/bar + echo "unversioned file" > $testroot/wt/epsilon/boo + echo "unversioned file" > $testroot/wt/epsilon/moo + echo "epsilon/" > $testroot/wt/.gitignore + + echo '? .gitignore' > $testroot/stdout.expected + echo '? foo' >> $testroot/stdout.expected + (cd $testroot/wt && got status > $testroot/stdout) + + cmp -s $testroot/stdout.expected $testroot/stdout + ret=$? + if [ $ret -ne 0 ]; then + diff -u $testroot/stdout.expected $testroot/stdout + test_done "$testroot" "xfail trailing slashes" + return 1 + fi + test_done "$testroot" "$ret" +} + test_status_status_code() { local testroot=`test_init status_status_code` @@ -1044,6 +1074,7 @@ run_test test_status_empty_dir_unversioned_file run_test test_status_many_paths run_test test_status_cvsignore run_test test_status_gitignore +run_test test_status_gitignore_trailing_slashes run_test test_status_status_code run_test test_status_suppress run_test test_status_empty_file