]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t3436-rebase-more-options.sh
The ninth batch
[thirdparty/git.git] / t / t3436-rebase-more-options.sh
index c3184c9ade95861d9e30164dee9c6ba81f3616f3..94671d3c4650463525006090702210eda76594e0 100755 (executable)
@@ -40,24 +40,6 @@ test_expect_success 'setup' '
        EOF
 '
 
-test_expect_success 'bad -X <strategy-option> arguments: unclosed quote' '
-       cat >expect <<-\EOF &&
-       fatal: could not split '\''--bad'\'': unclosed quote
-       EOF
-       test_expect_code 128 git rebase -X"bad argument\"" side main >out 2>actual &&
-       test_must_be_empty out &&
-       test_cmp expect actual
-'
-
-test_expect_success 'bad -X <strategy-option> arguments: bad escape' '
-       cat >expect <<-\EOF &&
-       fatal: could not split '\''--bad'\'': cmdline ends with \
-       EOF
-       test_expect_code 128 git rebase -X"bad escape \\" side main >out 2>actual &&
-       test_must_be_empty out &&
-       test_cmp expect actual
-'
-
 test_expect_success '--ignore-whitespace works with apply backend' '
        test_must_fail git rebase --apply main side &&
        git rebase --abort &&