diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 3528065..02def33 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -25,5 +25,5 @@ jobs: target patchparser/target key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-withleakchecker - - name: Run tests & deny warnings // check leaks // check formatting, in parallel - run: make ci + - name: Run tests and checks in parallel + run: make verbose_ci diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..9b2c5b9 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,52 @@ +# Contributing to split-patch + +This document is for those who would like to contribute to split-patch. + +## PR notes + +Instead of mentioning the issue or pull request numbers in the commit +messages or using GitHub's merge commits, this project uses a GitHub +action to add Git notes to the commit that was merged. You can get +those notes by running the following command after cloning the +repository: + + git fetch origin refs/notes/commits:refs/notes/commits + +The notes are shown in "git log" output as "Notes:" at the end of +commit messages. `gitk` shows them the same way and also shows yellow +"sticky note" markers in the commit list. Other history viewers +probably do the same. + +To automatically retrieve the notes whenever you fetch from the +repository, configure the remote correspondingly via: + + git config --add remote.origin.fetch '+refs/notes/commits:refs/notes/commits' + +## Clippy + +A number of warnings deemed not useful enough have been configured as +"allow" in Cargo.toml. + +To run clippy the same way that the CI runs it (except CI runs it in +error mode, via `make clippy_deny`): + + make clippy + +In case you want to see all of the default clippy warnings, +i.e. ignore the ignores: + + CLIPPY_ARGS="-- -W clippy::all" make clippy + +To have clippy fix the warnings according to the project desires: + + make clippy_fix + +## Testing / CI + +GitHub CI runs `make ci`. You can run this locally before +(re)submitting the PR to speed up checking. This does run `cargo fmt` +and will output the diff from the last commit. + +During development, `make test` is likely what you usually want to +run. For other, more finegrained test choices, have a look at the +`Makefile`. \ No newline at end of file diff --git a/Makefile b/Makefile index abce73e..4da83b6 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ build: - cargo $(OUR_CARGO_FLAGS) build --release + ( cd split-patch && cargo $(OUR_CARGO_FLAGS) build --release ) fmt: ( cd patchparser && cargo fmt ) - cargo fmt + ( cd split-patch && cargo fmt ) check_formatting: fmt git diff --exit-code @@ -11,16 +11,16 @@ check_formatting: fmt cargo_test: @echo "++ Run cargo $(OUR_CARGO_FLAGS) test on both crates" ( cd patchparser && cargo $(OUR_CARGO_FLAGS) test ) - cargo $(OUR_CARGO_FLAGS) test + ( cd split-patch && cargo $(OUR_CARGO_FLAGS) test ) cargo_check: ( cd patchparser && cargo $(OUR_CARGO_FLAGS) test --color=always ) - cargo $(OUR_CARGO_FLAGS) test --color=always + ( cd split-patch && cargo $(OUR_CARGO_FLAGS) test --color=always ) # This target is to abstract running clippy on everything (and can be run manually) clippy: ( cd patchparser && cargo clippy --color=always --all-targets --all-features $(CLIPPY_ARGS) ) - cargo clippy --color=always --all-targets --all-features $(CLIPPY_ARGS) + ( cd split-patch && cargo clippy --color=always --all-targets --all-features $(CLIPPY_ARGS) ) # This is for use in CI. # Setting `RUSTFLAGS` to the same as in the `test_deny_warnings` @@ -34,16 +34,20 @@ clippy_fix: CLIPPY_ARGS="--fix" make clippy test_integration: - @echo "++ Run tests on test/div" - OUR_CARGO_BUILD_FLAGS="" test/run-test-for-input-dir test/div - @echo "++ Run tests on test/chj-home" - OUR_CARGO_BUILD_FLAGS="" test/run-test-for-input-dir test/chj-home + @echo "++ Run tests on split-patch/test/div" + ( cd split-patch && \ + OUR_CARGO_BUILD_FLAGS="" test/run-test-for-input-dir test/div ) + @echo "++ Run tests on split-patch/test/chj-home" + ( cd split-patch && \ + OUR_CARGO_BUILD_FLAGS="" test/run-test-for-input-dir test/chj-home ) test_integration_opt: - @echo "++ Run tests on test/div" - OUR_CARGO_BUILD_FLAGS="--release" test/run-test-for-input-dir test/div - @echo "++ Run tests on test/chj-home" - OUR_CARGO_BUILD_FLAGS="--release" test/run-test-for-input-dir test/chj-home + @echo "++ Run tests on split-patch/test/div" + ( cd split-patch && \ + OUR_CARGO_BUILD_FLAGS="--release" test/run-test-for-input-dir test/div ) + @echo "++ Run tests on split-patch/test/chj-home" + ( cd split-patch && \ + OUR_CARGO_BUILD_FLAGS="--release" test/run-test-for-input-dir test/chj-home ) test: cargo_test test_integration @@ -57,18 +61,23 @@ test_deny_warnings: RUSTFLAGS="--deny warnings" make cargo_test miri_test: - cargo +nightly miri test --target powerpc-unknown-linux-gnu + ( cd split-patch && cargo +nightly miri test --target powerpc-unknown-linux-gnu ) miri_run: - SPLIT_PATCH=test/miri-split-patch test/run-test-for-input-dir test/div + ( cd split-patch && \ + SPLIT_PATCH=test/miri-split-patch OUR_CARGO_BUILD_FLAGS="" test/run-test-for-input-dir test/div ) miri: miri_test miri_run # Run in Github CI -ci: target/debug/log-timestamp +ci: test/target/debug/log-timestamp test/ci-make test_deny_warnings clippy_deny leak_test check_formatting -target/debug/log-timestamp: test/log-timestamp.rs - mkdir -p target/debug/ +verbose_ci: + CI_MAKE_VERBOSE=1 make ci + +# Build test utility the fastest way possible +test/target/debug/log-timestamp: test/src/bin/log-timestamp.rs + mkdir -p test/target/debug/ rustc $< -o $@ diff --git a/README.md b/README.md index 21e5624..54dc056 100644 --- a/README.md +++ b/README.md @@ -1,80 +1,9 @@ -# Split patch files on file, hunk or change boundaries +# Library and tools for working with diff and patch files -This program takes patch files in unified diff format, optionally with -a header (e.g. as produced by `git format-patch`), and splits them up -into separate patch files that contain the same header (except -optionally with a suffix added in its subject line), but only a diff -for one target file each, or one hunk for one file each, or even one -change each. +This project maintains the [patchparser](patchparser/) Rust crate, a +library for parsing and constructing diff and patch files, as well as +tools using that, currently the [split-patch](split-patch/) program. -Our terminology here: +## Contributing -A patch: a file with a(n optional) header and one or more file diffs. - -A diff: the differences for one file. - -A hunk: the differences for an uninterrupted region in a file (i.e. a diff split on the `@@ ` lines). - -A change: one region of `-` and/or `+` lines including associated context lines (` `). - -## Usage - -Install via `cargo install --locked split-patch`, or if you have -checked out the repository, `cargo install --locked --path .`. - -Run `split-patch --help` for usage help. - -## History - -This program is a rewrite of a [version written in Perl](https://github.com/pflanze/chj-scripts/blob/7e29f7473f8f874d28914d65a5d0d16b81889945/split-patch). - -## Contributions - -### PR notes - -Instead of mentioning the issue or pull request numbers in the commit -messages or using GitHub's merge commits, this project uses a GitHub -action to add Git notes to the commit that was merged. You can get -those notes by running the following command after cloning the -repository: - - git fetch origin refs/notes/commits:refs/notes/commits - -The notes are shown in "git log" output as "Notes:" at the end of -commit messages. `gitk` shows them the same way and also shows yellow -"sticky note" markers in the commit list. Other history viewers -probably do the same. - -To automatically retrieve the notes whenever you fetch from the -repository, configure the remote correspondingly via: - - git config --add remote.origin.fetch '+refs/notes/commits:refs/notes/commits' - -### Clippy - -A number of warnings deemed not useful enough have been configured as -"allow" in Cargo.toml. - -To run clippy the same way that the CI runs it (except CI runs it in -error mode, via `make clippy_deny`): - - make clippy - -In case you want to see all of the default clippy warnings, -i.e. ignore the ignores: - - CLIPPY_ARGS="-- -W clippy::all" make clippy - -To have clippy fix the warnings according to the project desires: - - make clippy_fix - -### Testing / CI - -GitHub CI runs `make ci`. You can run this locally before -(re)submitting the PR to speed up checking. This does run `cargo fmt` -and will output the diff from the last commit. - -During development, `make test` is likely what you usually want to -run. For other, more finegrained test choices, have a look at the -`Makefile`. +For more information about contributing to this project, please see [CONTRIBUTING](CONTRIBUTING.md) diff --git a/flake.nix b/flake.nix index 5790362..406daf8 100644 --- a/flake.nix +++ b/flake.nix @@ -56,14 +56,16 @@ system: let pkgs = nixpkgs.legacyPackages.${system}; - cargoToml = builtins.fromTOML (builtins.readFile ./Cargo.toml); + cargoToml = builtins.fromTOML (builtins.readFile ./split-patch/Cargo.toml); in { default = pkgs.rustPlatform.buildRustPackage { name = cargoToml.package.name; src = ./.; version = cargoToml.package.version; - cargoLock.lockFile = ./Cargo.lock; + cargoLock.lockFile = ./split-patch/Cargo.lock; + cargoRoot = "split-patch"; + buildAndTestSubdir = "split-patch"; meta = { description = cargoToml.package.description; homepage = cargoToml.package.homepage || cargoToml.package.repository; diff --git a/patchparser/README.md b/patchparser/README.md new file mode 100644 index 0000000..4e0efbb --- /dev/null +++ b/patchparser/README.md @@ -0,0 +1,7 @@ +# patchparser: working with diff and patch files + +This library allows for parsing and constructing diff and patch files +in unified diff format with an optional header, as e.g. Git produces +them via `git format-patch`. + +For an example, see the [split-patch](https://github.com/IntermediateResults/split-patch/blob/main/split-patch/README.md) program. diff --git a/.rustsec-ignore.txt b/split-patch/.rustsec-ignore.txt similarity index 100% rename from .rustsec-ignore.txt rename to split-patch/.rustsec-ignore.txt diff --git a/Cargo.lock b/split-patch/Cargo.lock similarity index 100% rename from Cargo.lock rename to split-patch/Cargo.lock diff --git a/Cargo.toml b/split-patch/Cargo.toml similarity index 93% rename from Cargo.toml rename to split-patch/Cargo.toml index 23ac869..038e9d0 100644 --- a/Cargo.toml +++ b/split-patch/Cargo.toml @@ -25,12 +25,8 @@ type_complexity = "allow" name = "test-split-patches-in-dir" path = "test/test-split-patches-in-dir.rs" -[[bin]] -name = "log-timestamp" -path = "test/log-timestamp.rs" - [dependencies] -patchparser = { path = "patchparser" } +patchparser = { path = "../patchparser" } anyhow = { version = "1.0", features = ["backtrace"] } bstr = { version = "1.10", default-features = false, features = ["alloc"] } diff --git a/split-patch/README.md b/split-patch/README.md new file mode 100644 index 0000000..ab34f3d --- /dev/null +++ b/split-patch/README.md @@ -0,0 +1,29 @@ +# Split patch files on file, hunk or change boundaries + +This program takes patch files in unified diff format, optionally with +a header (e.g. as produced by `git format-patch`), and splits them up +into separate patch files that contain the same header (except +optionally with a suffix added in its subject line), but only a diff +for one target file each, or one hunk for one file each, or even one +change each. + +Our terminology here: + +A patch: a file with a(n optional) header and one or more file diffs. + +A diff: the differences for one file. + +A hunk: the differences for an uninterrupted region in a file (i.e. a diff split on the `@@ ` lines). + +A change: one region of `-` and/or `+` lines including associated context lines (` `). + +## Usage + +Install via `cargo install --locked split-patch`, or if you have +checked out the repository, `cargo install --locked --path .`. + +Run `split-patch --help` for usage help. + +## History + +This program is a rewrite of a [version written in Perl](https://github.com/pflanze/chj-scripts/blob/7e29f7473f8f874d28914d65a5d0d16b81889945/split-patch). diff --git a/src/bin/split-patch.rs b/split-patch/src/bin/split-patch.rs similarity index 100% rename from src/bin/split-patch.rs rename to split-patch/src/bin/split-patch.rs diff --git a/src/core.rs b/split-patch/src/core.rs similarity index 100% rename from src/core.rs rename to split-patch/src/core.rs diff --git a/src/lib.rs b/split-patch/src/lib.rs similarity index 100% rename from src/lib.rs rename to split-patch/src/lib.rs diff --git a/src/path_utils.rs b/split-patch/src/path_utils.rs similarity index 100% rename from src/path_utils.rs rename to split-patch/src/path_utils.rs diff --git a/src/split_options.rs b/split-patch/src/split_options.rs similarity index 100% rename from src/split_options.rs rename to split-patch/src/split_options.rs diff --git a/test/.gitignore b/split-patch/test/.gitignore similarity index 100% rename from test/.gitignore rename to split-patch/test/.gitignore diff --git a/test/README.md b/split-patch/test/README.md similarity index 100% rename from test/README.md rename to split-patch/test/README.md diff --git a/test/chj-home-expected/--/0001-move-lt-to-chj-bin/0001-move-lt-to-chj-bin-.bashrc.patch b/split-patch/test/chj-home-expected/--/0001-move-lt-to-chj-bin/0001-move-lt-to-chj-bin-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0001-move-lt-to-chj-bin/0001-move-lt-to-chj-bin-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0001-move-lt-to-chj-bin/0001-move-lt-to-chj-bin-.bashrc.patch diff --git a/test/chj-home-expected/--/0001-move-lt-to-chj-bin/_list b/split-patch/test/chj-home-expected/--/0001-move-lt-to-chj-bin/_list similarity index 100% rename from test/chj-home-expected/--/0001-move-lt-to-chj-bin/_list rename to split-patch/test/chj-home-expected/--/0001-move-lt-to-chj-bin/_list diff --git a/test/chj-home-expected/--/0002-ignore-.xhtml/0002-ignore-.xhtml-.gitignore_global.patch b/split-patch/test/chj-home-expected/--/0002-ignore-.xhtml/0002-ignore-.xhtml-.gitignore_global.patch similarity index 100% rename from test/chj-home-expected/--/0002-ignore-.xhtml/0002-ignore-.xhtml-.gitignore_global.patch rename to split-patch/test/chj-home-expected/--/0002-ignore-.xhtml/0002-ignore-.xhtml-.gitignore_global.patch diff --git a/test/chj-home-expected/--/0002-ignore-.xhtml/_list b/split-patch/test/chj-home-expected/--/0002-ignore-.xhtml/_list similarity index 100% rename from test/chj-home-expected/--/0002-ignore-.xhtml/_list rename to split-patch/test/chj-home-expected/--/0002-ignore-.xhtml/_list diff --git a/test/chj-home-expected/--/0003-ignore-nohup.out/0003-ignore-nohup.out-.gitignore_global.patch b/split-patch/test/chj-home-expected/--/0003-ignore-nohup.out/0003-ignore-nohup.out-.gitignore_global.patch similarity index 100% rename from test/chj-home-expected/--/0003-ignore-nohup.out/0003-ignore-nohup.out-.gitignore_global.patch rename to split-patch/test/chj-home-expected/--/0003-ignore-nohup.out/0003-ignore-nohup.out-.gitignore_global.patch diff --git a/test/chj-home-expected/--/0003-ignore-nohup.out/_list b/split-patch/test/chj-home-expected/--/0003-ignore-nohup.out/_list similarity index 100% rename from test/chj-home-expected/--/0003-ignore-nohup.out/_list rename to split-patch/test/chj-home-expected/--/0003-ignore-nohup.out/_list diff --git a/test/chj-home-expected/--/0004-git-wanted-this/0004-git-wanted-this-.gitconfig.patch b/split-patch/test/chj-home-expected/--/0004-git-wanted-this/0004-git-wanted-this-.gitconfig.patch similarity index 100% rename from test/chj-home-expected/--/0004-git-wanted-this/0004-git-wanted-this-.gitconfig.patch rename to split-patch/test/chj-home-expected/--/0004-git-wanted-this/0004-git-wanted-this-.gitconfig.patch diff --git a/test/chj-home-expected/--/0004-git-wanted-this/_list b/split-patch/test/chj-home-expected/--/0004-git-wanted-this/_list similarity index 100% rename from test/chj-home-expected/--/0004-git-wanted-this/_list rename to split-patch/test/chj-home-expected/--/0004-git-wanted-this/_list diff --git a/test/chj-home-expected/--/0005-ignore-.markdownmake.lck/0005-ignore-.markdownmake.lck-.gitignore_global.patch b/split-patch/test/chj-home-expected/--/0005-ignore-.markdownmake.lck/0005-ignore-.markdownmake.lck-.gitignore_global.patch similarity index 100% rename from test/chj-home-expected/--/0005-ignore-.markdownmake.lck/0005-ignore-.markdownmake.lck-.gitignore_global.patch rename to split-patch/test/chj-home-expected/--/0005-ignore-.markdownmake.lck/0005-ignore-.markdownmake.lck-.gitignore_global.patch diff --git a/test/chj-home-expected/--/0005-ignore-.markdownmake.lck/_list b/split-patch/test/chj-home-expected/--/0005-ignore-.markdownmake.lck/_list similarity index 100% rename from test/chj-home-expected/--/0005-ignore-.markdownmake.lck/_list rename to split-patch/test/chj-home-expected/--/0005-ignore-.markdownmake.lck/_list diff --git a/test/chj-home-expected/--/0006-UK-locale/0006-UK-locale-.bashrc.patch b/split-patch/test/chj-home-expected/--/0006-UK-locale/0006-UK-locale-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0006-UK-locale/0006-UK-locale-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0006-UK-locale/0006-UK-locale-.bashrc.patch diff --git a/test/chj-home-expected/--/0006-UK-locale/_list b/split-patch/test/chj-home-expected/--/0006-UK-locale/_list similarity index 100% rename from test/chj-home-expected/--/0006-UK-locale/_list rename to split-patch/test/chj-home-expected/--/0006-UK-locale/_list diff --git a/test/chj-home-expected/--/0007-obsolete/0007-obsolete-.bashrc.patch b/split-patch/test/chj-home-expected/--/0007-obsolete/0007-obsolete-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0007-obsolete/0007-obsolete-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0007-obsolete/0007-obsolete-.bashrc.patch diff --git a/test/chj-home-expected/--/0007-obsolete/_list b/split-patch/test/chj-home-expected/--/0007-obsolete/_list similarity index 100% rename from test/chj-home-expected/--/0007-obsolete/_list rename to split-patch/test/chj-home-expected/--/0007-obsolete/_list diff --git a/test/chj-home-expected/--/0008-make-windows-key-Alt_L/0008-make-windows-key-Alt_L-.xmodmaprc.patch b/split-patch/test/chj-home-expected/--/0008-make-windows-key-Alt_L/0008-make-windows-key-Alt_L-.xmodmaprc.patch similarity index 100% rename from test/chj-home-expected/--/0008-make-windows-key-Alt_L/0008-make-windows-key-Alt_L-.xmodmaprc.patch rename to split-patch/test/chj-home-expected/--/0008-make-windows-key-Alt_L/0008-make-windows-key-Alt_L-.xmodmaprc.patch diff --git a/test/chj-home-expected/--/0008-make-windows-key-Alt_L/_list b/split-patch/test/chj-home-expected/--/0008-make-windows-key-Alt_L/_list similarity index 100% rename from test/chj-home-expected/--/0008-make-windows-key-Alt_L/_list rename to split-patch/test/chj-home-expected/--/0008-make-windows-key-Alt_L/_list diff --git a/test/chj-home-expected/--/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources.patch b/split-patch/test/chj-home-expected/--/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources.patch similarity index 100% rename from test/chj-home-expected/--/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources.patch rename to split-patch/test/chj-home-expected/--/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources.patch diff --git a/test/chj-home-expected/--/0009-update-emacs-geometry-remove-ancient-entries/_list b/split-patch/test/chj-home-expected/--/0009-update-emacs-geometry-remove-ancient-entries/_list similarity index 100% rename from test/chj-home-expected/--/0009-update-emacs-geometry-remove-ancient-entries/_list rename to split-patch/test/chj-home-expected/--/0009-update-emacs-geometry-remove-ancient-entries/_list diff --git a/test/chj-home-expected/--/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources.patch b/split-patch/test/chj-home-expected/--/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources.patch similarity index 100% rename from test/chj-home-expected/--/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources.patch rename to split-patch/test/chj-home-expected/--/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources.patch diff --git a/test/chj-home-expected/--/0010-remove-more-ancient-entries/_list b/split-patch/test/chj-home-expected/--/0010-remove-more-ancient-entries/_list similarity index 100% rename from test/chj-home-expected/--/0010-remove-more-ancient-entries/_list rename to split-patch/test/chj-home-expected/--/0010-remove-more-ancient-entries/_list diff --git a/test/chj-home-expected/--/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources.patch b/split-patch/test/chj-home-expected/--/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources.patch similarity index 100% rename from test/chj-home-expected/--/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources.patch rename to split-patch/test/chj-home-expected/--/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources.patch diff --git a/test/chj-home-expected/--/0011-remove-more-old-entries-apparently-unused/_list b/split-patch/test/chj-home-expected/--/0011-remove-more-old-entries-apparently-unused/_list similarity index 100% rename from test/chj-home-expected/--/0011-remove-more-old-entries-apparently-unused/_list rename to split-patch/test/chj-home-expected/--/0011-remove-more-old-entries-apparently-unused/_list diff --git a/test/chj-home-expected/--/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc.patch b/split-patch/test/chj-home-expected/--/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc.patch diff --git a/test/chj-home-expected/--/0012-don-t-use-aliases/_list b/split-patch/test/chj-home-expected/--/0012-don-t-use-aliases/_list similarity index 100% rename from test/chj-home-expected/--/0012-don-t-use-aliases/_list rename to split-patch/test/chj-home-expected/--/0012-don-t-use-aliases/_list diff --git a/test/chj-home-expected/--/0013-cleanup/0013-cleanup-.bashrc.patch b/split-patch/test/chj-home-expected/--/0013-cleanup/0013-cleanup-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0013-cleanup/0013-cleanup-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0013-cleanup/0013-cleanup-.bashrc.patch diff --git a/test/chj-home-expected/--/0013-cleanup/_list b/split-patch/test/chj-home-expected/--/0013-cleanup/_list similarity index 100% rename from test/chj-home-expected/--/0013-cleanup/_list rename to split-patch/test/chj-home-expected/--/0013-cleanup/_list diff --git a/test/chj-home-expected/--/0014-cleanup/0014-cleanup-.xmodmaprc_off.patch b/split-patch/test/chj-home-expected/--/0014-cleanup/0014-cleanup-.xmodmaprc_off.patch similarity index 100% rename from test/chj-home-expected/--/0014-cleanup/0014-cleanup-.xmodmaprc_off.patch rename to split-patch/test/chj-home-expected/--/0014-cleanup/0014-cleanup-.xmodmaprc_off.patch diff --git a/test/chj-home-expected/--/0014-cleanup/_list b/split-patch/test/chj-home-expected/--/0014-cleanup/_list similarity index 100% rename from test/chj-home-expected/--/0014-cleanup/_list rename to split-patch/test/chj-home-expected/--/0014-cleanup/_list diff --git a/test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d.patch b/split-patch/test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d.patch similarity index 100% rename from test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d.patch rename to split-patch/test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d.patch diff --git a/test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode-tests.el.patch b/split-patch/test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode-tests.el.patch similarity index 100% rename from test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode-tests.el.patch rename to split-patch/test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode-tests.el.patch diff --git a/test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode.el.patch b/split-patch/test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode.el.patch similarity index 100% rename from test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode.el.patch rename to split-patch/test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode.el.patch diff --git a/test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/_list b/split-patch/test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/_list similarity index 100% rename from test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/_list rename to split-patch/test/chj-home-expected/--/0015-use-.emacs.d-from-chj-emacs/_list diff --git a/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.d.patch b/split-patch/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.d.patch similarity index 100% rename from test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.d.patch rename to split-patch/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.d.patch diff --git a/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.patch b/split-patch/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.patch similarity index 100% rename from test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.patch rename to split-patch/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.patch diff --git a/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.xemacs_init.el.patch b/split-patch/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.xemacs_init.el.patch similarity index 100% rename from test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.xemacs_init.el.patch rename to split-patch/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.xemacs_init.el.patch diff --git a/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-home-init.patch b/split-patch/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-home-init.patch similarity index 100% rename from test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-home-init.patch rename to split-patch/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-home-init.patch diff --git a/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/_list b/split-patch/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/_list similarity index 100% rename from test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/_list rename to split-patch/test/chj-home-expected/--/0016-replace-external-symlinks-with-a-script/_list diff --git a/test/chj-home-expected/--/0017-home-init-run-lesskey/0017-home-init-run-lesskey-home-init.patch b/split-patch/test/chj-home-expected/--/0017-home-init-run-lesskey/0017-home-init-run-lesskey-home-init.patch similarity index 100% rename from test/chj-home-expected/--/0017-home-init-run-lesskey/0017-home-init-run-lesskey-home-init.patch rename to split-patch/test/chj-home-expected/--/0017-home-init-run-lesskey/0017-home-init-run-lesskey-home-init.patch diff --git a/test/chj-home-expected/--/0017-home-init-run-lesskey/_list b/split-patch/test/chj-home-expected/--/0017-home-init-run-lesskey/_list similarity index 100% rename from test/chj-home-expected/--/0017-home-init-run-lesskey/_list rename to split-patch/test/chj-home-expected/--/0017-home-init-run-lesskey/_list diff --git a/test/chj-home-expected/--/0018-fix-don-t-use-aliases/0018-fix-don-t-use-aliases-.bashrc.patch b/split-patch/test/chj-home-expected/--/0018-fix-don-t-use-aliases/0018-fix-don-t-use-aliases-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0018-fix-don-t-use-aliases/0018-fix-don-t-use-aliases-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0018-fix-don-t-use-aliases/0018-fix-don-t-use-aliases-.bashrc.patch diff --git a/test/chj-home-expected/--/0018-fix-don-t-use-aliases/_list b/split-patch/test/chj-home-expected/--/0018-fix-don-t-use-aliases/_list similarity index 100% rename from test/chj-home-expected/--/0018-fix-don-t-use-aliases/_list rename to split-patch/test/chj-home-expected/--/0018-fix-don-t-use-aliases/_list diff --git a/test/chj-home-expected/--/0019-home-init-fixes/0019-home-init-fixes-home-init.patch b/split-patch/test/chj-home-expected/--/0019-home-init-fixes/0019-home-init-fixes-home-init.patch similarity index 100% rename from test/chj-home-expected/--/0019-home-init-fixes/0019-home-init-fixes-home-init.patch rename to split-patch/test/chj-home-expected/--/0019-home-init-fixes/0019-home-init-fixes-home-init.patch diff --git a/test/chj-home-expected/--/0019-home-init-fixes/_list b/split-patch/test/chj-home-expected/--/0019-home-init-fixes/_list similarity index 100% rename from test/chj-home-expected/--/0019-home-init-fixes/_list rename to split-patch/test/chj-home-expected/--/0019-home-init-fixes/_list diff --git a/test/chj-home-expected/--/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile.patch diff --git a/test/chj-home-expected/--/0020-clean-up-PATH/_list b/split-patch/test/chj-home-expected/--/0020-clean-up-PATH/_list similarity index 100% rename from test/chj-home-expected/--/0020-clean-up-PATH/_list rename to split-patch/test/chj-home-expected/--/0020-clean-up-PATH/_list diff --git a/test/chj-home-expected/--/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile.patch diff --git a/test/chj-home-expected/--/0021-load-.bashrc-last/_list b/split-patch/test/chj-home-expected/--/0021-load-.bashrc-last/_list similarity index 100% rename from test/chj-home-expected/--/0021-load-.bashrc-last/_list rename to split-patch/test/chj-home-expected/--/0021-load-.bashrc-last/_list diff --git a/test/chj-home-expected/--/0022-better-grouping/0022-better-grouping-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0022-better-grouping/0022-better-grouping-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0022-better-grouping/0022-better-grouping-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0022-better-grouping/0022-better-grouping-.bash_profile.patch diff --git a/test/chj-home-expected/--/0022-better-grouping/_list b/split-patch/test/chj-home-expected/--/0022-better-grouping/_list similarity index 100% rename from test/chj-home-expected/--/0022-better-grouping/_list rename to split-patch/test/chj-home-expected/--/0022-better-grouping/_list diff --git a/test/chj-home-expected/--/0023-remove-duplicate/0023-remove-duplicate-.bashrc.patch b/split-patch/test/chj-home-expected/--/0023-remove-duplicate/0023-remove-duplicate-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0023-remove-duplicate/0023-remove-duplicate-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0023-remove-duplicate/0023-remove-duplicate-.bashrc.patch diff --git a/test/chj-home-expected/--/0023-remove-duplicate/_list b/split-patch/test/chj-home-expected/--/0023-remove-duplicate/_list similarity index 100% rename from test/chj-home-expected/--/0023-remove-duplicate/_list rename to split-patch/test/chj-home-expected/--/0023-remove-duplicate/_list diff --git a/test/chj-home-expected/--/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bash_profile.patch diff --git a/test/chj-home-expected/--/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bashrc.patch b/split-patch/test/chj-home-expected/--/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bashrc.patch diff --git a/test/chj-home-expected/--/0024-move-to-.bash_profile/_list b/split-patch/test/chj-home-expected/--/0024-move-to-.bash_profile/_list similarity index 100% rename from test/chj-home-expected/--/0024-move-to-.bash_profile/_list rename to split-patch/test/chj-home-expected/--/0024-move-to-.bash_profile/_list diff --git a/test/chj-home-expected/--/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bash_profile.patch diff --git a/test/chj-home-expected/--/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc.patch b/split-patch/test/chj-home-expected/--/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc.patch diff --git a/test/chj-home-expected/--/0025-more-move-to-.bash_profile-incl.-HISTSIZE/_list b/split-patch/test/chj-home-expected/--/0025-more-move-to-.bash_profile-incl.-HISTSIZE/_list similarity index 100% rename from test/chj-home-expected/--/0025-more-move-to-.bash_profile-incl.-HISTSIZE/_list rename to split-patch/test/chj-home-expected/--/0025-more-move-to-.bash_profile-incl.-HISTSIZE/_list diff --git a/test/chj-home-expected/--/0026-cleanup/0026-cleanup-.bashrc.patch b/split-patch/test/chj-home-expected/--/0026-cleanup/0026-cleanup-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0026-cleanup/0026-cleanup-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0026-cleanup/0026-cleanup-.bashrc.patch diff --git a/test/chj-home-expected/--/0026-cleanup/_list b/split-patch/test/chj-home-expected/--/0026-cleanup/_list similarity index 100% rename from test/chj-home-expected/--/0026-cleanup/_list rename to split-patch/test/chj-home-expected/--/0026-cleanup/_list diff --git a/test/chj-home-expected/--/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile.patch diff --git a/test/chj-home-expected/--/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bashrc.patch b/split-patch/test/chj-home-expected/--/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bashrc.patch diff --git a/test/chj-home-expected/--/0027-more-move-to-.bash_profile-beautify/_list b/split-patch/test/chj-home-expected/--/0027-more-move-to-.bash_profile-beautify/_list similarity index 100% rename from test/chj-home-expected/--/0027-more-move-to-.bash_profile-beautify/_list rename to split-patch/test/chj-home-expected/--/0027-more-move-to-.bash_profile-beautify/_list diff --git a/test/chj-home-expected/--/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile.patch diff --git a/test/chj-home-expected/--/0028-source-.bash_profile_local/_list b/split-patch/test/chj-home-expected/--/0028-source-.bash_profile_local/_list similarity index 100% rename from test/chj-home-expected/--/0028-source-.bash_profile_local/_list rename to split-patch/test/chj-home-expected/--/0028-source-.bash_profile_local/_list diff --git a/test/chj-home-expected/--/0029-source-.bashrc_local/0029-source-.bashrc_local-.bashrc.patch b/split-patch/test/chj-home-expected/--/0029-source-.bashrc_local/0029-source-.bashrc_local-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0029-source-.bashrc_local/0029-source-.bashrc_local-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0029-source-.bashrc_local/0029-source-.bashrc_local-.bashrc.patch diff --git a/test/chj-home-expected/--/0029-source-.bashrc_local/_list b/split-patch/test/chj-home-expected/--/0029-source-.bashrc_local/_list similarity index 100% rename from test/chj-home-expected/--/0029-source-.bashrc_local/_list rename to split-patch/test/chj-home-expected/--/0029-source-.bashrc_local/_list diff --git a/test/chj-home-expected/--/0030-remove-entries-that-can-be-moved-to-.bashrc_local/0030-remove-entries-that-can-be-moved-to-.bashrc_local-.bashrc.patch b/split-patch/test/chj-home-expected/--/0030-remove-entries-that-can-be-moved-to-.bashrc_local/0030-remove-entries-that-can-be-moved-to-.bashrc_local-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0030-remove-entries-that-can-be-moved-to-.bashrc_local/0030-remove-entries-that-can-be-moved-to-.bashrc_local-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0030-remove-entries-that-can-be-moved-to-.bashrc_local/0030-remove-entries-that-can-be-moved-to-.bashrc_local-.bashrc.patch diff --git a/test/chj-home-expected/--/0030-remove-entries-that-can-be-moved-to-.bashrc_local/_list b/split-patch/test/chj-home-expected/--/0030-remove-entries-that-can-be-moved-to-.bashrc_local/_list similarity index 100% rename from test/chj-home-expected/--/0030-remove-entries-that-can-be-moved-to-.bashrc_local/_list rename to split-patch/test/chj-home-expected/--/0030-remove-entries-that-can-be-moved-to-.bashrc_local/_list diff --git a/test/chj-home-expected/--/0031-remove-ALSARECDEV/0031-remove-ALSARECDEV-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0031-remove-ALSARECDEV/0031-remove-ALSARECDEV-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0031-remove-ALSARECDEV/0031-remove-ALSARECDEV-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0031-remove-ALSARECDEV/0031-remove-ALSARECDEV-.bash_profile.patch diff --git a/test/chj-home-expected/--/0031-remove-ALSARECDEV/_list b/split-patch/test/chj-home-expected/--/0031-remove-ALSARECDEV/_list similarity index 100% rename from test/chj-home-expected/--/0031-remove-ALSARECDEV/_list rename to split-patch/test/chj-home-expected/--/0031-remove-ALSARECDEV/_list diff --git a/test/chj-home-expected/--/0032-add-note-about-overridability-of-ulimit-S/0032-add-note-about-overridability-of-ulimit-S-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0032-add-note-about-overridability-of-ulimit-S/0032-add-note-about-overridability-of-ulimit-S-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0032-add-note-about-overridability-of-ulimit-S/0032-add-note-about-overridability-of-ulimit-S-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0032-add-note-about-overridability-of-ulimit-S/0032-add-note-about-overridability-of-ulimit-S-.bash_profile.patch diff --git a/test/chj-home-expected/--/0032-add-note-about-overridability-of-ulimit-S/_list b/split-patch/test/chj-home-expected/--/0032-add-note-about-overridability-of-ulimit-S/_list similarity index 100% rename from test/chj-home-expected/--/0032-add-note-about-overridability-of-ulimit-S/_list rename to split-patch/test/chj-home-expected/--/0032-add-note-about-overridability-of-ulimit-S/_list diff --git a/test/chj-home-expected/--/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/0033-home-init-do-the-remaining-tasks-that-chrisclone-did-home-init.patch b/split-patch/test/chj-home-expected/--/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/0033-home-init-do-the-remaining-tasks-that-chrisclone-did-home-init.patch similarity index 100% rename from test/chj-home-expected/--/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/0033-home-init-do-the-remaining-tasks-that-chrisclone-did-home-init.patch rename to split-patch/test/chj-home-expected/--/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/0033-home-init-do-the-remaining-tasks-that-chrisclone-did-home-init.patch diff --git a/test/chj-home-expected/--/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/_list b/split-patch/test/chj-home-expected/--/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/_list similarity index 100% rename from test/chj-home-expected/--/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/_list rename to split-patch/test/chj-home-expected/--/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/_list diff --git a/test/chj-home-expected/--/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init.patch b/split-patch/test/chj-home-expected/--/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init.patch similarity index 100% rename from test/chj-home-expected/--/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init.patch rename to split-patch/test/chj-home-expected/--/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init.patch diff --git a/test/chj-home-expected/--/0034-home-init-allow-to-run-from-different-working-direct/_list b/split-patch/test/chj-home-expected/--/0034-home-init-allow-to-run-from-different-working-direct/_list similarity index 100% rename from test/chj-home-expected/--/0034-home-init-allow-to-run-from-different-working-direct/_list rename to split-patch/test/chj-home-expected/--/0034-home-init-allow-to-run-from-different-working-direct/_list diff --git a/test/chj-home-expected/--/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc.patch b/split-patch/test/chj-home-expected/--/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc.patch diff --git a/test/chj-home-expected/--/0035-more-fix-don-t-use-aliases/_list b/split-patch/test/chj-home-expected/--/0035-more-fix-don-t-use-aliases/_list similarity index 100% rename from test/chj-home-expected/--/0035-more-fix-don-t-use-aliases/_list rename to split-patch/test/chj-home-expected/--/0035-more-fix-don-t-use-aliases/_list diff --git a/test/chj-home-expected/--/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc.patch b/split-patch/test/chj-home-expected/--/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc.patch similarity index 100% rename from test/chj-home-expected/--/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc.patch rename to split-patch/test/chj-home-expected/--/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc.patch diff --git a/test/chj-home-expected/--/0036-.inputrc-cleanup/_list b/split-patch/test/chj-home-expected/--/0036-.inputrc-cleanup/_list similarity index 100% rename from test/chj-home-expected/--/0036-.inputrc-cleanup/_list rename to split-patch/test/chj-home-expected/--/0036-.inputrc-cleanup/_list diff --git a/test/chj-home-expected/--/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bash_profile.patch diff --git a/test/chj-home-expected/--/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bashrc.patch b/split-patch/test/chj-home-expected/--/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bashrc.patch diff --git a/test/chj-home-expected/--/0037-merge-root-s-home-s-features/_list b/split-patch/test/chj-home-expected/--/0037-merge-root-s-home-s-features/_list similarity index 100% rename from test/chj-home-expected/--/0037-merge-root-s-home-s-features/_list rename to split-patch/test/chj-home-expected/--/0037-merge-root-s-home-s-features/_list diff --git a/test/chj-home-expected/--/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig.patch b/split-patch/test/chj-home-expected/--/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig.patch similarity index 100% rename from test/chj-home-expected/--/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig.patch rename to split-patch/test/chj-home-expected/--/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig.patch diff --git a/test/chj-home-expected/--/0038-.gitconfig-cleanup/_list b/split-patch/test/chj-home-expected/--/0038-.gitconfig-cleanup/_list similarity index 100% rename from test/chj-home-expected/--/0038-.gitconfig-cleanup/_list rename to split-patch/test/chj-home-expected/--/0038-.gitconfig-cleanup/_list diff --git a/test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile.patch diff --git a/test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.gitconfig.patch b/split-patch/test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.gitconfig.patch similarity index 100% rename from test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.gitconfig.patch rename to split-patch/test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.gitconfig.patch diff --git a/test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init.patch b/split-patch/test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init.patch similarity index 100% rename from test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init.patch rename to split-patch/test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init.patch diff --git a/test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/_list b/split-patch/test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/_list similarity index 100% rename from test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/_list rename to split-patch/test/chj-home-expected/--/0039-ask-user-specific-info-from-home-init-generate-files/_list diff --git a/test/chj-home-expected/--/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc.patch b/split-patch/test/chj-home-expected/--/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc.patch diff --git a/test/chj-home-expected/--/0040-.bashrc-return-false-for-failing-commands/_list b/split-patch/test/chj-home-expected/--/0040-.bashrc-return-false-for-failing-commands/_list similarity index 100% rename from test/chj-home-expected/--/0040-.bashrc-return-false-for-failing-commands/_list rename to split-patch/test/chj-home-expected/--/0040-.bashrc-return-false-for-failing-commands/_list diff --git a/test/chj-home-expected/--/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init.patch b/split-patch/test/chj-home-expected/--/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init.patch similarity index 100% rename from test/chj-home-expected/--/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init.patch rename to split-patch/test/chj-home-expected/--/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init.patch diff --git a/test/chj-home-expected/--/0041-home-init-only-run-once/_list b/split-patch/test/chj-home-expected/--/0041-home-init-only-run-once/_list similarity index 100% rename from test/chj-home-expected/--/0041-home-init-only-run-once/_list rename to split-patch/test/chj-home-expected/--/0041-home-init-only-run-once/_list diff --git a/test/chj-home-expected/--/0042-home-init-create-scratch-directory/0042-home-init-create-scratch-directory-home-init.patch b/split-patch/test/chj-home-expected/--/0042-home-init-create-scratch-directory/0042-home-init-create-scratch-directory-home-init.patch similarity index 100% rename from test/chj-home-expected/--/0042-home-init-create-scratch-directory/0042-home-init-create-scratch-directory-home-init.patch rename to split-patch/test/chj-home-expected/--/0042-home-init-create-scratch-directory/0042-home-init-create-scratch-directory-home-init.patch diff --git a/test/chj-home-expected/--/0042-home-init-create-scratch-directory/_list b/split-patch/test/chj-home-expected/--/0042-home-init-create-scratch-directory/_list similarity index 100% rename from test/chj-home-expected/--/0042-home-init-create-scratch-directory/_list rename to split-patch/test/chj-home-expected/--/0042-home-init-create-scratch-directory/_list diff --git a/test/chj-home-expected/--/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t-.bash_profile.patch diff --git a/test/chj-home-expected/--/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/_list b/split-patch/test/chj-home-expected/--/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/_list similarity index 100% rename from test/chj-home-expected/--/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/_list rename to split-patch/test/chj-home-expected/--/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/_list diff --git a/test/chj-home-expected/--/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH-.bash_profile.patch diff --git a/test/chj-home-expected/--/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/_list b/split-patch/test/chj-home-expected/--/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/_list similarity index 100% rename from test/chj-home-expected/--/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/_list rename to split-patch/test/chj-home-expected/--/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/_list diff --git a/test/chj-home-expected/--/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b-.bashrc.patch b/split-patch/test/chj-home-expected/--/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b-.bashrc.patch diff --git a/test/chj-home-expected/--/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/_list b/split-patch/test/chj-home-expected/--/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/_list similarity index 100% rename from test/chj-home-expected/--/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/_list rename to split-patch/test/chj-home-expected/--/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/_list diff --git a/test/chj-home-expected/--/0046-.bash_profile-stop-the-X-beep/0046-.bash_profile-stop-the-X-beep-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0046-.bash_profile-stop-the-X-beep/0046-.bash_profile-stop-the-X-beep-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0046-.bash_profile-stop-the-X-beep/0046-.bash_profile-stop-the-X-beep-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0046-.bash_profile-stop-the-X-beep/0046-.bash_profile-stop-the-X-beep-.bash_profile.patch diff --git a/test/chj-home-expected/--/0046-.bash_profile-stop-the-X-beep/_list b/split-patch/test/chj-home-expected/--/0046-.bash_profile-stop-the-X-beep/_list similarity index 100% rename from test/chj-home-expected/--/0046-.bash_profile-stop-the-X-beep/_list rename to split-patch/test/chj-home-expected/--/0046-.bash_profile-stop-the-X-beep/_list diff --git a/test/chj-home-expected/--/0047-.Xresources-reduce-emacs-window-height/0047-.Xresources-reduce-emacs-window-height-.Xresources.patch b/split-patch/test/chj-home-expected/--/0047-.Xresources-reduce-emacs-window-height/0047-.Xresources-reduce-emacs-window-height-.Xresources.patch similarity index 100% rename from test/chj-home-expected/--/0047-.Xresources-reduce-emacs-window-height/0047-.Xresources-reduce-emacs-window-height-.Xresources.patch rename to split-patch/test/chj-home-expected/--/0047-.Xresources-reduce-emacs-window-height/0047-.Xresources-reduce-emacs-window-height-.Xresources.patch diff --git a/test/chj-home-expected/--/0047-.Xresources-reduce-emacs-window-height/_list b/split-patch/test/chj-home-expected/--/0047-.Xresources-reduce-emacs-window-height/_list similarity index 100% rename from test/chj-home-expected/--/0047-.Xresources-reduce-emacs-window-height/_list rename to split-patch/test/chj-home-expected/--/0047-.Xresources-reduce-emacs-window-height/_list diff --git a/test/chj-home-expected/--/0048-.bash_profile-increase-default-virtual-memory-limit/0048-.bash_profile-increase-default-virtual-memory-limit-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0048-.bash_profile-increase-default-virtual-memory-limit/0048-.bash_profile-increase-default-virtual-memory-limit-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0048-.bash_profile-increase-default-virtual-memory-limit/0048-.bash_profile-increase-default-virtual-memory-limit-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0048-.bash_profile-increase-default-virtual-memory-limit/0048-.bash_profile-increase-default-virtual-memory-limit-.bash_profile.patch diff --git a/test/chj-home-expected/--/0048-.bash_profile-increase-default-virtual-memory-limit/_list b/split-patch/test/chj-home-expected/--/0048-.bash_profile-increase-default-virtual-memory-limit/_list similarity index 100% rename from test/chj-home-expected/--/0048-.bash_profile-increase-default-virtual-memory-limit/_list rename to split-patch/test/chj-home-expected/--/0048-.bash_profile-increase-default-virtual-memory-limit/_list diff --git a/test/chj-home-expected/--/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.bash_profile.patch diff --git a/test/chj-home-expected/--/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0049-move-home-init-.chj-home-init/_list b/split-patch/test/chj-home-expected/--/0049-move-home-init-.chj-home-init/_list similarity index 100% rename from test/chj-home-expected/--/0049-move-home-init-.chj-home-init/_list rename to split-patch/test/chj-home-expected/--/0049-move-home-init-.chj-home-init/_list diff --git a/test/chj-home-expected/--/0050-.bash_profile-stop-the-X-beep/0050-.bash_profile-stop-the-X-beep-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0050-.bash_profile-stop-the-X-beep/0050-.bash_profile-stop-the-X-beep-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0050-.bash_profile-stop-the-X-beep/0050-.bash_profile-stop-the-X-beep-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0050-.bash_profile-stop-the-X-beep/0050-.bash_profile-stop-the-X-beep-.bash_profile.patch diff --git a/test/chj-home-expected/--/0050-.bash_profile-stop-the-X-beep/_list b/split-patch/test/chj-home-expected/--/0050-.bash_profile-stop-the-X-beep/_list similarity index 100% rename from test/chj-home-expected/--/0050-.bash_profile-stop-the-X-beep/_list rename to split-patch/test/chj-home-expected/--/0050-.bash_profile-stop-the-X-beep/_list diff --git a/test/chj-home-expected/--/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0051-symlink-the-opt-chj-emacs-bin-scripts/_list b/split-patch/test/chj-home-expected/--/0051-symlink-the-opt-chj-emacs-bin-scripts/_list similarity index 100% rename from test/chj-home-expected/--/0051-symlink-the-opt-chj-emacs-bin-scripts/_list rename to split-patch/test/chj-home-expected/--/0051-symlink-the-opt-chj-emacs-bin-scripts/_list diff --git a/test/chj-home-expected/--/0052-.bashrc-use-false-instead-of-return-1/0052-.bashrc-use-false-instead-of-return-1-.bashrc.patch b/split-patch/test/chj-home-expected/--/0052-.bashrc-use-false-instead-of-return-1/0052-.bashrc-use-false-instead-of-return-1-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0052-.bashrc-use-false-instead-of-return-1/0052-.bashrc-use-false-instead-of-return-1-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0052-.bashrc-use-false-instead-of-return-1/0052-.bashrc-use-false-instead-of-return-1-.bashrc.patch diff --git a/test/chj-home-expected/--/0052-.bashrc-use-false-instead-of-return-1/_list b/split-patch/test/chj-home-expected/--/0052-.bashrc-use-false-instead-of-return-1/_list similarity index 100% rename from test/chj-home-expected/--/0052-.bashrc-use-false-instead-of-return-1/_list rename to split-patch/test/chj-home-expected/--/0052-.bashrc-use-false-instead-of-return-1/_list diff --git a/test/chj-home-expected/--/0053-.Xresources-emacs-back-to-internal-LCD-novo/0053-.Xresources-emacs-back-to-internal-LCD-novo-.Xresources.patch b/split-patch/test/chj-home-expected/--/0053-.Xresources-emacs-back-to-internal-LCD-novo/0053-.Xresources-emacs-back-to-internal-LCD-novo-.Xresources.patch similarity index 100% rename from test/chj-home-expected/--/0053-.Xresources-emacs-back-to-internal-LCD-novo/0053-.Xresources-emacs-back-to-internal-LCD-novo-.Xresources.patch rename to split-patch/test/chj-home-expected/--/0053-.Xresources-emacs-back-to-internal-LCD-novo/0053-.Xresources-emacs-back-to-internal-LCD-novo-.Xresources.patch diff --git a/test/chj-home-expected/--/0053-.Xresources-emacs-back-to-internal-LCD-novo/_list b/split-patch/test/chj-home-expected/--/0053-.Xresources-emacs-back-to-internal-LCD-novo/_list similarity index 100% rename from test/chj-home-expected/--/0053-.Xresources-emacs-back-to-internal-LCD-novo/_list rename to split-patch/test/chj-home-expected/--/0053-.Xresources-emacs-back-to-internal-LCD-novo/_list diff --git a/test/chj-home-expected/--/0054-.Xresources-omfg-it-was-correctly-displayed/0054-.Xresources-omfg-it-was-correctly-displayed-.Xresources.patch b/split-patch/test/chj-home-expected/--/0054-.Xresources-omfg-it-was-correctly-displayed/0054-.Xresources-omfg-it-was-correctly-displayed-.Xresources.patch similarity index 100% rename from test/chj-home-expected/--/0054-.Xresources-omfg-it-was-correctly-displayed/0054-.Xresources-omfg-it-was-correctly-displayed-.Xresources.patch rename to split-patch/test/chj-home-expected/--/0054-.Xresources-omfg-it-was-correctly-displayed/0054-.Xresources-omfg-it-was-correctly-displayed-.Xresources.patch diff --git a/test/chj-home-expected/--/0054-.Xresources-omfg-it-was-correctly-displayed/_list b/split-patch/test/chj-home-expected/--/0054-.Xresources-omfg-it-was-correctly-displayed/_list similarity index 100% rename from test/chj-home-expected/--/0054-.Xresources-omfg-it-was-correctly-displayed/_list rename to split-patch/test/chj-home-expected/--/0054-.Xresources-omfg-it-was-correctly-displayed/_list diff --git a/test/chj-home-expected/--/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/0055-add-.xscreensaver-with-hand-selection-through-ALL-of-.xscreensaver.patch b/split-patch/test/chj-home-expected/--/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/0055-add-.xscreensaver-with-hand-selection-through-ALL-of-.xscreensaver.patch similarity index 100% rename from test/chj-home-expected/--/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/0055-add-.xscreensaver-with-hand-selection-through-ALL-of-.xscreensaver.patch rename to split-patch/test/chj-home-expected/--/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/0055-add-.xscreensaver-with-hand-selection-through-ALL-of-.xscreensaver.patch diff --git a/test/chj-home-expected/--/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/_list b/split-patch/test/chj-home-expected/--/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/_list similarity index 100% rename from test/chj-home-expected/--/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/_list rename to split-patch/test/chj-home-expected/--/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/_list diff --git a/test/chj-home-expected/--/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver.patch b/split-patch/test/chj-home-expected/--/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver.patch similarity index 100% rename from test/chj-home-expected/--/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver.patch rename to split-patch/test/chj-home-expected/--/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver.patch diff --git a/test/chj-home-expected/--/0056-.xscreensaver-disable-sonar/_list b/split-patch/test/chj-home-expected/--/0056-.xscreensaver-disable-sonar/_list similarity index 100% rename from test/chj-home-expected/--/0056-.xscreensaver-disable-sonar/_list rename to split-patch/test/chj-home-expected/--/0056-.xscreensaver-disable-sonar/_list diff --git a/test/chj-home-expected/--/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver.patch b/split-patch/test/chj-home-expected/--/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver.patch similarity index 100% rename from test/chj-home-expected/--/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver.patch rename to split-patch/test/chj-home-expected/--/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver.patch diff --git a/test/chj-home-expected/--/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/_list b/split-patch/test/chj-home-expected/--/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/_list similarity index 100% rename from test/chj-home-expected/--/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/_list rename to split-patch/test/chj-home-expected/--/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/_list diff --git a/test/chj-home-expected/--/0058-.bashrc-ls-with-colors/0058-.bashrc-ls-with-colors-.bashrc.patch b/split-patch/test/chj-home-expected/--/0058-.bashrc-ls-with-colors/0058-.bashrc-ls-with-colors-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0058-.bashrc-ls-with-colors/0058-.bashrc-ls-with-colors-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0058-.bashrc-ls-with-colors/0058-.bashrc-ls-with-colors-.bashrc.patch diff --git a/test/chj-home-expected/--/0058-.bashrc-ls-with-colors/_list b/split-patch/test/chj-home-expected/--/0058-.bashrc-ls-with-colors/_list similarity index 100% rename from test/chj-home-expected/--/0058-.bashrc-ls-with-colors/_list rename to split-patch/test/chj-home-expected/--/0058-.bashrc-ls-with-colors/_list diff --git a/test/chj-home-expected/--/0059-.bashrc-remove-le-function/0059-.bashrc-remove-le-function-.bashrc.patch b/split-patch/test/chj-home-expected/--/0059-.bashrc-remove-le-function/0059-.bashrc-remove-le-function-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0059-.bashrc-remove-le-function/0059-.bashrc-remove-le-function-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0059-.bashrc-remove-le-function/0059-.bashrc-remove-le-function-.bashrc.patch diff --git a/test/chj-home-expected/--/0059-.bashrc-remove-le-function/_list b/split-patch/test/chj-home-expected/--/0059-.bashrc-remove-le-function/_list similarity index 100% rename from test/chj-home-expected/--/0059-.bashrc-remove-le-function/_list rename to split-patch/test/chj-home-expected/--/0059-.bashrc-remove-le-function/_list diff --git a/test/chj-home-expected/--/0060-make-unlimit-accept-a-command/0060-make-unlimit-accept-a-command-.bashrc.patch b/split-patch/test/chj-home-expected/--/0060-make-unlimit-accept-a-command/0060-make-unlimit-accept-a-command-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0060-make-unlimit-accept-a-command/0060-make-unlimit-accept-a-command-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0060-make-unlimit-accept-a-command/0060-make-unlimit-accept-a-command-.bashrc.patch diff --git a/test/chj-home-expected/--/0060-make-unlimit-accept-a-command/_list b/split-patch/test/chj-home-expected/--/0060-make-unlimit-accept-a-command/_list similarity index 100% rename from test/chj-home-expected/--/0060-make-unlimit-accept-a-command/_list rename to split-patch/test/chj-home-expected/--/0060-make-unlimit-accept-a-command/_list diff --git a/test/chj-home-expected/--/0061-move-.xscreensaver-config-file-let-user-symlink-it/0061-move-.xscreensaver-config-file-let-user-symlink-it-.chj-home_dot.xscreensaver-dull.patch b/split-patch/test/chj-home-expected/--/0061-move-.xscreensaver-config-file-let-user-symlink-it/0061-move-.xscreensaver-config-file-let-user-symlink-it-.chj-home_dot.xscreensaver-dull.patch similarity index 100% rename from test/chj-home-expected/--/0061-move-.xscreensaver-config-file-let-user-symlink-it/0061-move-.xscreensaver-config-file-let-user-symlink-it-.chj-home_dot.xscreensaver-dull.patch rename to split-patch/test/chj-home-expected/--/0061-move-.xscreensaver-config-file-let-user-symlink-it/0061-move-.xscreensaver-config-file-let-user-symlink-it-.chj-home_dot.xscreensaver-dull.patch diff --git a/test/chj-home-expected/--/0061-move-.xscreensaver-config-file-let-user-symlink-it/_list b/split-patch/test/chj-home-expected/--/0061-move-.xscreensaver-config-file-let-user-symlink-it/_list similarity index 100% rename from test/chj-home-expected/--/0061-move-.xscreensaver-config-file-let-user-symlink-it/_list rename to split-patch/test/chj-home-expected/--/0061-move-.xscreensaver-config-file-let-user-symlink-it/_list diff --git a/test/chj-home-expected/--/0062-turn-PrtSc-button-into-Control/0062-turn-PrtSc-button-into-Control-.xmodmaprc.patch b/split-patch/test/chj-home-expected/--/0062-turn-PrtSc-button-into-Control/0062-turn-PrtSc-button-into-Control-.xmodmaprc.patch similarity index 100% rename from test/chj-home-expected/--/0062-turn-PrtSc-button-into-Control/0062-turn-PrtSc-button-into-Control-.xmodmaprc.patch rename to split-patch/test/chj-home-expected/--/0062-turn-PrtSc-button-into-Control/0062-turn-PrtSc-button-into-Control-.xmodmaprc.patch diff --git a/test/chj-home-expected/--/0062-turn-PrtSc-button-into-Control/_list b/split-patch/test/chj-home-expected/--/0062-turn-PrtSc-button-into-Control/_list similarity index 100% rename from test/chj-home-expected/--/0062-turn-PrtSc-button-into-Control/_list rename to split-patch/test/chj-home-expected/--/0062-turn-PrtSc-button-into-Control/_list diff --git a/test/chj-home-expected/--/0063-.bashrc-silence-error-message-when-in-scratch/0063-.bashrc-silence-error-message-when-in-scratch-.bashrc.patch b/split-patch/test/chj-home-expected/--/0063-.bashrc-silence-error-message-when-in-scratch/0063-.bashrc-silence-error-message-when-in-scratch-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0063-.bashrc-silence-error-message-when-in-scratch/0063-.bashrc-silence-error-message-when-in-scratch-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0063-.bashrc-silence-error-message-when-in-scratch/0063-.bashrc-silence-error-message-when-in-scratch-.bashrc.patch diff --git a/test/chj-home-expected/--/0063-.bashrc-silence-error-message-when-in-scratch/_list b/split-patch/test/chj-home-expected/--/0063-.bashrc-silence-error-message-when-in-scratch/_list similarity index 100% rename from test/chj-home-expected/--/0063-.bashrc-silence-error-message-when-in-scratch/_list rename to split-patch/test/chj-home-expected/--/0063-.bashrc-silence-error-message-when-in-scratch/_list diff --git a/test/chj-home-expected/--/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc.patch b/split-patch/test/chj-home-expected/--/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc.patch diff --git a/test/chj-home-expected/--/0064-.bashrc-don-t-use-backticks/_list b/split-patch/test/chj-home-expected/--/0064-.bashrc-don-t-use-backticks/_list similarity index 100% rename from test/chj-home-expected/--/0064-.bashrc-don-t-use-backticks/_list rename to split-patch/test/chj-home-expected/--/0064-.bashrc-don-t-use-backticks/_list diff --git a/test/chj-home-expected/--/0065-.bashrc-add-rensn/0065-.bashrc-add-rensn-.bashrc.patch b/split-patch/test/chj-home-expected/--/0065-.bashrc-add-rensn/0065-.bashrc-add-rensn-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0065-.bashrc-add-rensn/0065-.bashrc-add-rensn-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0065-.bashrc-add-rensn/0065-.bashrc-add-rensn-.bashrc.patch diff --git a/test/chj-home-expected/--/0065-.bashrc-add-rensn/_list b/split-patch/test/chj-home-expected/--/0065-.bashrc-add-rensn/_list similarity index 100% rename from test/chj-home-expected/--/0065-.bashrc-add-rensn/_list rename to split-patch/test/chj-home-expected/--/0065-.bashrc-add-rensn/_list diff --git a/test/chj-home-expected/--/0066-.bashrc-add-rensnall/0066-.bashrc-add-rensnall-.bashrc.patch b/split-patch/test/chj-home-expected/--/0066-.bashrc-add-rensnall/0066-.bashrc-add-rensnall-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0066-.bashrc-add-rensnall/0066-.bashrc-add-rensnall-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0066-.bashrc-add-rensnall/0066-.bashrc-add-rensnall-.bashrc.patch diff --git a/test/chj-home-expected/--/0066-.bashrc-add-rensnall/_list b/split-patch/test/chj-home-expected/--/0066-.bashrc-add-rensnall/_list similarity index 100% rename from test/chj-home-expected/--/0066-.bashrc-add-rensnall/_list rename to split-patch/test/chj-home-expected/--/0066-.bashrc-add-rensnall/_list diff --git a/test/chj-home-expected/--/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc.patch b/split-patch/test/chj-home-expected/--/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc.patch diff --git a/test/chj-home-expected/--/0067-.bashrc-consistently-format-function-definitions/_list b/split-patch/test/chj-home-expected/--/0067-.bashrc-consistently-format-function-definitions/_list similarity index 100% rename from test/chj-home-expected/--/0067-.bashrc-consistently-format-function-definitions/_list rename to split-patch/test/chj-home-expected/--/0067-.bashrc-consistently-format-function-definitions/_list diff --git a/test/chj-home-expected/--/0068-.bashrc-use-ren-nonrenamed/0068-.bashrc-use-ren-nonrenamed-.bashrc.patch b/split-patch/test/chj-home-expected/--/0068-.bashrc-use-ren-nonrenamed/0068-.bashrc-use-ren-nonrenamed-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0068-.bashrc-use-ren-nonrenamed/0068-.bashrc-use-ren-nonrenamed-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0068-.bashrc-use-ren-nonrenamed/0068-.bashrc-use-ren-nonrenamed-.bashrc.patch diff --git a/test/chj-home-expected/--/0068-.bashrc-use-ren-nonrenamed/_list b/split-patch/test/chj-home-expected/--/0068-.bashrc-use-ren-nonrenamed/_list similarity index 100% rename from test/chj-home-expected/--/0068-.bashrc-use-ren-nonrenamed/_list rename to split-patch/test/chj-home-expected/--/0068-.bashrc-use-ren-nonrenamed/_list diff --git a/test/chj-home-expected/--/0069-.bashrc-shorten-that-name/0069-.bashrc-shorten-that-name-.bashrc.patch b/split-patch/test/chj-home-expected/--/0069-.bashrc-shorten-that-name/0069-.bashrc-shorten-that-name-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0069-.bashrc-shorten-that-name/0069-.bashrc-shorten-that-name-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0069-.bashrc-shorten-that-name/0069-.bashrc-shorten-that-name-.bashrc.patch diff --git a/test/chj-home-expected/--/0069-.bashrc-shorten-that-name/_list b/split-patch/test/chj-home-expected/--/0069-.bashrc-shorten-that-name/_list similarity index 100% rename from test/chj-home-expected/--/0069-.bashrc-shorten-that-name/_list rename to split-patch/test/chj-home-expected/--/0069-.bashrc-shorten-that-name/_list diff --git a/test/chj-home-expected/--/0070-.bashrc-add-cb/0070-.bashrc-add-cb-.bashrc.patch b/split-patch/test/chj-home-expected/--/0070-.bashrc-add-cb/0070-.bashrc-add-cb-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0070-.bashrc-add-cb/0070-.bashrc-add-cb-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0070-.bashrc-add-cb/0070-.bashrc-add-cb-.bashrc.patch diff --git a/test/chj-home-expected/--/0070-.bashrc-add-cb/_list b/split-patch/test/chj-home-expected/--/0070-.bashrc-add-cb/_list similarity index 100% rename from test/chj-home-expected/--/0070-.bashrc-add-cb/_list rename to split-patch/test/chj-home-expected/--/0070-.bashrc-add-cb/_list diff --git a/test/chj-home-expected/--/0071-Turn-off-new-Git-editor-waiting-warning/0071-Turn-off-new-Git-editor-waiting-warning-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0071-Turn-off-new-Git-editor-waiting-warning/0071-Turn-off-new-Git-editor-waiting-warning-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0071-Turn-off-new-Git-editor-waiting-warning/0071-Turn-off-new-Git-editor-waiting-warning-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0071-Turn-off-new-Git-editor-waiting-warning/0071-Turn-off-new-Git-editor-waiting-warning-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0071-Turn-off-new-Git-editor-waiting-warning/_list b/split-patch/test/chj-home-expected/--/0071-Turn-off-new-Git-editor-waiting-warning/_list similarity index 100% rename from test/chj-home-expected/--/0071-Turn-off-new-Git-editor-waiting-warning/_list rename to split-patch/test/chj-home-expected/--/0071-Turn-off-new-Git-editor-waiting-warning/_list diff --git a/test/chj-home-expected/--/0072-.bashrc-cb-accept-argument/0072-.bashrc-cb-accept-argument-.bashrc.patch b/split-patch/test/chj-home-expected/--/0072-.bashrc-cb-accept-argument/0072-.bashrc-cb-accept-argument-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0072-.bashrc-cb-accept-argument/0072-.bashrc-cb-accept-argument-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0072-.bashrc-cb-accept-argument/0072-.bashrc-cb-accept-argument-.bashrc.patch diff --git a/test/chj-home-expected/--/0072-.bashrc-cb-accept-argument/_list b/split-patch/test/chj-home-expected/--/0072-.bashrc-cb-accept-argument/_list similarity index 100% rename from test/chj-home-expected/--/0072-.bashrc-cb-accept-argument/_list rename to split-patch/test/chj-home-expected/--/0072-.bashrc-cb-accept-argument/_list diff --git a/test/chj-home-expected/--/0073-.bashrc-cb-do-it-better/0073-.bashrc-cb-do-it-better-.bashrc.patch b/split-patch/test/chj-home-expected/--/0073-.bashrc-cb-do-it-better/0073-.bashrc-cb-do-it-better-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0073-.bashrc-cb-do-it-better/0073-.bashrc-cb-do-it-better-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0073-.bashrc-cb-do-it-better/0073-.bashrc-cb-do-it-better-.bashrc.patch diff --git a/test/chj-home-expected/--/0073-.bashrc-cb-do-it-better/_list b/split-patch/test/chj-home-expected/--/0073-.bashrc-cb-do-it-better/_list similarity index 100% rename from test/chj-home-expected/--/0073-.bashrc-cb-do-it-better/_list rename to split-patch/test/chj-home-expected/--/0073-.bashrc-cb-do-it-better/_list diff --git a/test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.bash_profile.patch diff --git a/test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.lesskey.patch b/split-patch/test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.lesskey.patch similarity index 100% rename from test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.lesskey.patch rename to split-patch/test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.lesskey.patch diff --git a/test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/_list b/split-patch/test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/_list similarity index 100% rename from test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/_list rename to split-patch/test/chj-home-expected/--/0074-Don-t-use-.lesskey-anymore-for-env-LESS/_list diff --git a/test/chj-home-expected/--/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc.patch b/split-patch/test/chj-home-expected/--/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc.patch diff --git a/test/chj-home-expected/--/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/_list b/split-patch/test/chj-home-expected/--/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/_list similarity index 100% rename from test/chj-home-expected/--/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/_list rename to split-patch/test/chj-home-expected/--/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/_list diff --git a/test/chj-home-expected/--/0076-.bashrc-have-u-etc.-take-optional-argument/0076-.bashrc-have-u-etc.-take-optional-argument-.bashrc.patch b/split-patch/test/chj-home-expected/--/0076-.bashrc-have-u-etc.-take-optional-argument/0076-.bashrc-have-u-etc.-take-optional-argument-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0076-.bashrc-have-u-etc.-take-optional-argument/0076-.bashrc-have-u-etc.-take-optional-argument-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0076-.bashrc-have-u-etc.-take-optional-argument/0076-.bashrc-have-u-etc.-take-optional-argument-.bashrc.patch diff --git a/test/chj-home-expected/--/0076-.bashrc-have-u-etc.-take-optional-argument/_list b/split-patch/test/chj-home-expected/--/0076-.bashrc-have-u-etc.-take-optional-argument/_list similarity index 100% rename from test/chj-home-expected/--/0076-.bashrc-have-u-etc.-take-optional-argument/_list rename to split-patch/test/chj-home-expected/--/0076-.bashrc-have-u-etc.-take-optional-argument/_list diff --git a/test/chj-home-expected/--/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc.patch b/split-patch/test/chj-home-expected/--/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc.patch diff --git a/test/chj-home-expected/--/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/_list b/split-patch/test/chj-home-expected/--/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/_list similarity index 100% rename from test/chj-home-expected/--/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/_list rename to split-patch/test/chj-home-expected/--/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/_list diff --git a/test/chj-home-expected/--/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/0078-.bashrc-u-more-transaction-safety-properly-handle-OL-.bashrc.patch b/split-patch/test/chj-home-expected/--/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/0078-.bashrc-u-more-transaction-safety-properly-handle-OL-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/0078-.bashrc-u-more-transaction-safety-properly-handle-OL-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/0078-.bashrc-u-more-transaction-safety-properly-handle-OL-.bashrc.patch diff --git a/test/chj-home-expected/--/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/_list b/split-patch/test/chj-home-expected/--/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/_list similarity index 100% rename from test/chj-home-expected/--/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/_list rename to split-patch/test/chj-home-expected/--/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/_list diff --git a/test/chj-home-expected/--/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change-.bashrc.patch b/split-patch/test/chj-home-expected/--/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change-.bashrc.patch diff --git a/test/chj-home-expected/--/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/_list b/split-patch/test/chj-home-expected/--/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/_list similarity index 100% rename from test/chj-home-expected/--/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/_list rename to split-patch/test/chj-home-expected/--/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/_list diff --git a/test/chj-home-expected/--/0080-.bash_profile-double-history-size/0080-.bash_profile-double-history-size-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0080-.bash_profile-double-history-size/0080-.bash_profile-double-history-size-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0080-.bash_profile-double-history-size/0080-.bash_profile-double-history-size-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0080-.bash_profile-double-history-size/0080-.bash_profile-double-history-size-.bash_profile.patch diff --git a/test/chj-home-expected/--/0080-.bash_profile-double-history-size/_list b/split-patch/test/chj-home-expected/--/0080-.bash_profile-double-history-size/_list similarity index 100% rename from test/chj-home-expected/--/0080-.bash_profile-double-history-size/_list rename to split-patch/test/chj-home-expected/--/0080-.bash_profile-double-history-size/_list diff --git a/test/chj-home-expected/--/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard-.xpdfrc.patch b/split-patch/test/chj-home-expected/--/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard-.xpdfrc.patch similarity index 100% rename from test/chj-home-expected/--/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard-.xpdfrc.patch rename to split-patch/test/chj-home-expected/--/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard-.xpdfrc.patch diff --git a/test/chj-home-expected/--/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/_list b/split-patch/test/chj-home-expected/--/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/_list similarity index 100% rename from test/chj-home-expected/--/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/_list rename to split-patch/test/chj-home-expected/--/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/_list diff --git a/test/chj-home-expected/--/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile.patch diff --git a/test/chj-home-expected/--/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/_list b/split-patch/test/chj-home-expected/--/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/_list similarity index 100% rename from test/chj-home-expected/--/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/_list rename to split-patch/test/chj-home-expected/--/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/_list diff --git a/test/chj-home-expected/--/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bash_profile.patch diff --git a/test/chj-home-expected/--/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bashrc.patch b/split-patch/test/chj-home-expected/--/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bashrc.patch diff --git a/test/chj-home-expected/--/0083-Yet-increase-bash-history-size-more/_list b/split-patch/test/chj-home-expected/--/0083-Yet-increase-bash-history-size-more/_list similarity index 100% rename from test/chj-home-expected/--/0083-Yet-increase-bash-history-size-more/_list rename to split-patch/test/chj-home-expected/--/0083-Yet-increase-bash-history-size-more/_list diff --git a/test/chj-home-expected/--/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bash_profile.patch diff --git a/test/chj-home-expected/--/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bashrc.patch b/split-patch/test/chj-home-expected/--/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bashrc.patch diff --git a/test/chj-home-expected/--/0084-Move-CHJHOSTNAME-to-right-place-too/_list b/split-patch/test/chj-home-expected/--/0084-Move-CHJHOSTNAME-to-right-place-too/_list similarity index 100% rename from test/chj-home-expected/--/0084-Move-CHJHOSTNAME-to-right-place-too/_list rename to split-patch/test/chj-home-expected/--/0084-Move-CHJHOSTNAME-to-right-place-too/_list diff --git a/test/chj-home-expected/--/0085-.bashrc-add-cdn-alias-for-cd_newest/0085-.bashrc-add-cdn-alias-for-cd_newest-.bashrc.patch b/split-patch/test/chj-home-expected/--/0085-.bashrc-add-cdn-alias-for-cd_newest/0085-.bashrc-add-cdn-alias-for-cd_newest-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0085-.bashrc-add-cdn-alias-for-cd_newest/0085-.bashrc-add-cdn-alias-for-cd_newest-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0085-.bashrc-add-cdn-alias-for-cd_newest/0085-.bashrc-add-cdn-alias-for-cd_newest-.bashrc.patch diff --git a/test/chj-home-expected/--/0085-.bashrc-add-cdn-alias-for-cd_newest/_list b/split-patch/test/chj-home-expected/--/0085-.bashrc-add-cdn-alias-for-cd_newest/_list similarity index 100% rename from test/chj-home-expected/--/0085-.bashrc-add-cdn-alias-for-cd_newest/_list rename to split-patch/test/chj-home-expected/--/0085-.bashrc-add-cdn-alias-for-cd_newest/_list diff --git a/test/chj-home-expected/--/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc.patch b/split-patch/test/chj-home-expected/--/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc.patch diff --git a/test/chj-home-expected/--/0086-.bashrc-remove-stale-commented-lines/_list b/split-patch/test/chj-home-expected/--/0086-.bashrc-remove-stale-commented-lines/_list similarity index 100% rename from test/chj-home-expected/--/0086-.bashrc-remove-stale-commented-lines/_list rename to split-patch/test/chj-home-expected/--/0086-.bashrc-remove-stale-commented-lines/_list diff --git a/test/chj-home-expected/--/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc.patch b/split-patch/test/chj-home-expected/--/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc.patch diff --git a/test/chj-home-expected/--/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/_list b/split-patch/test/chj-home-expected/--/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/_list similarity index 100% rename from test/chj-home-expected/--/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/_list rename to split-patch/test/chj-home-expected/--/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/_list diff --git a/test/chj-home-expected/--/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc.patch b/split-patch/test/chj-home-expected/--/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc.patch diff --git a/test/chj-home-expected/--/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/_list b/split-patch/test/chj-home-expected/--/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/_list similarity index 100% rename from test/chj-home-expected/--/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/_list rename to split-patch/test/chj-home-expected/--/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/_list diff --git a/test/chj-home-expected/--/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again-.chj-home_dot.xscreensaver-dull.patch b/split-patch/test/chj-home-expected/--/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again-.chj-home_dot.xscreensaver-dull.patch similarity index 100% rename from test/chj-home-expected/--/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again-.chj-home_dot.xscreensaver-dull.patch rename to split-patch/test/chj-home-expected/--/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again-.chj-home_dot.xscreensaver-dull.patch diff --git a/test/chj-home-expected/--/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/_list b/split-patch/test/chj-home-expected/--/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/_list similarity index 100% rename from test/chj-home-expected/--/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/_list rename to split-patch/test/chj-home-expected/--/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/_list diff --git a/test/chj-home-expected/--/0090-.bashrc-cdn-ah-I-can-overload-it/0090-.bashrc-cdn-ah-I-can-overload-it-.bashrc.patch b/split-patch/test/chj-home-expected/--/0090-.bashrc-cdn-ah-I-can-overload-it/0090-.bashrc-cdn-ah-I-can-overload-it-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0090-.bashrc-cdn-ah-I-can-overload-it/0090-.bashrc-cdn-ah-I-can-overload-it-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0090-.bashrc-cdn-ah-I-can-overload-it/0090-.bashrc-cdn-ah-I-can-overload-it-.bashrc.patch diff --git a/test/chj-home-expected/--/0090-.bashrc-cdn-ah-I-can-overload-it/_list b/split-patch/test/chj-home-expected/--/0090-.bashrc-cdn-ah-I-can-overload-it/_list similarity index 100% rename from test/chj-home-expected/--/0090-.bashrc-cdn-ah-I-can-overload-it/_list rename to split-patch/test/chj-home-expected/--/0090-.bashrc-cdn-ah-I-can-overload-it/_list diff --git a/test/chj-home-expected/--/0091-.bashrc-add-cj/0091-.bashrc-add-cj-.bashrc.patch b/split-patch/test/chj-home-expected/--/0091-.bashrc-add-cj/0091-.bashrc-add-cj-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0091-.bashrc-add-cj/0091-.bashrc-add-cj-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0091-.bashrc-add-cj/0091-.bashrc-add-cj-.bashrc.patch diff --git a/test/chj-home-expected/--/0091-.bashrc-add-cj/_list b/split-patch/test/chj-home-expected/--/0091-.bashrc-add-cj/_list similarity index 100% rename from test/chj-home-expected/--/0091-.bashrc-add-cj/_list rename to split-patch/test/chj-home-expected/--/0091-.bashrc-add-cj/_list diff --git a/test/chj-home-expected/--/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/0092-.chj-home-init-make-sure-the-chjize-key-is-imported-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/0092-.chj-home-init-make-sure-the-chjize-key-is-imported-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/0092-.chj-home-init-make-sure-the-chjize-key-is-imported-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/0092-.chj-home-init-make-sure-the-chjize-key-is-imported-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/_list b/split-patch/test/chj-home-expected/--/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/_list similarity index 100% rename from test/chj-home-expected/--/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/_list rename to split-patch/test/chj-home-expected/--/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/_list diff --git a/test/chj-home-expected/--/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0093-.chj-home-init-move-gpg-import-to-the-end/_list b/split-patch/test/chj-home-expected/--/0093-.chj-home-init-move-gpg-import-to-the-end/_list similarity index 100% rename from test/chj-home-expected/--/0093-.chj-home-init-move-gpg-import-to-the-end/_list rename to split-patch/test/chj-home-expected/--/0093-.chj-home-init-move-gpg-import-to-the-end/_list diff --git a/test/chj-home-expected/--/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/0094-.chj-home-init-initialize-a-Git-repo-in-scratch-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/0094-.chj-home-init-initialize-a-Git-repo-in-scratch-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/0094-.chj-home-init-initialize-a-Git-repo-in-scratch-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/0094-.chj-home-init-initialize-a-Git-repo-in-scratch-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/_list b/split-patch/test/chj-home-expected/--/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/_list similarity index 100% rename from test/chj-home-expected/--/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/_list rename to split-patch/test/chj-home-expected/--/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/_list diff --git a/test/chj-home-expected/--/0095-.bash_profile-put-chjize-into-PATH/0095-.bash_profile-put-chjize-into-PATH-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0095-.bash_profile-put-chjize-into-PATH/0095-.bash_profile-put-chjize-into-PATH-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0095-.bash_profile-put-chjize-into-PATH/0095-.bash_profile-put-chjize-into-PATH-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0095-.bash_profile-put-chjize-into-PATH/0095-.bash_profile-put-chjize-into-PATH-.bash_profile.patch diff --git a/test/chj-home-expected/--/0095-.bash_profile-put-chjize-into-PATH/_list b/split-patch/test/chj-home-expected/--/0095-.bash_profile-put-chjize-into-PATH/_list similarity index 100% rename from test/chj-home-expected/--/0095-.bash_profile-put-chjize-into-PATH/_list rename to split-patch/test/chj-home-expected/--/0095-.bash_profile-put-chjize-into-PATH/_list diff --git a/test/chj-home-expected/--/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option-.bashrc.patch b/split-patch/test/chj-home-expected/--/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option-.bashrc.patch diff --git a/test/chj-home-expected/--/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/_list b/split-patch/test/chj-home-expected/--/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/_list similarity index 100% rename from test/chj-home-expected/--/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/_list rename to split-patch/test/chj-home-expected/--/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/_list diff --git a/test/chj-home-expected/--/0097-.bash_profile-set-USER-if-missing/0097-.bash_profile-set-USER-if-missing-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0097-.bash_profile-set-USER-if-missing/0097-.bash_profile-set-USER-if-missing-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0097-.bash_profile-set-USER-if-missing/0097-.bash_profile-set-USER-if-missing-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0097-.bash_profile-set-USER-if-missing/0097-.bash_profile-set-USER-if-missing-.bash_profile.patch diff --git a/test/chj-home-expected/--/0097-.bash_profile-set-USER-if-missing/_list b/split-patch/test/chj-home-expected/--/0097-.bash_profile-set-USER-if-missing/_list similarity index 100% rename from test/chj-home-expected/--/0097-.bash_profile-set-USER-if-missing/_list rename to split-patch/test/chj-home-expected/--/0097-.bash_profile-set-USER-if-missing/_list diff --git a/test/chj-home-expected/--/0098-.bash_profile-add-cj-qemucontrol-to-PATH/0098-.bash_profile-add-cj-qemucontrol-to-PATH-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0098-.bash_profile-add-cj-qemucontrol-to-PATH/0098-.bash_profile-add-cj-qemucontrol-to-PATH-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0098-.bash_profile-add-cj-qemucontrol-to-PATH/0098-.bash_profile-add-cj-qemucontrol-to-PATH-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0098-.bash_profile-add-cj-qemucontrol-to-PATH/0098-.bash_profile-add-cj-qemucontrol-to-PATH-.bash_profile.patch diff --git a/test/chj-home-expected/--/0098-.bash_profile-add-cj-qemucontrol-to-PATH/_list b/split-patch/test/chj-home-expected/--/0098-.bash_profile-add-cj-qemucontrol-to-PATH/_list similarity index 100% rename from test/chj-home-expected/--/0098-.bash_profile-add-cj-qemucontrol-to-PATH/_list rename to split-patch/test/chj-home-expected/--/0098-.bash_profile-add-cj-qemucontrol-to-PATH/_list diff --git a/test/chj-home-expected/--/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0099-.chj-home-init-accept-email-addresses-with-full-name/_list b/split-patch/test/chj-home-expected/--/0099-.chj-home-init-accept-email-addresses-with-full-name/_list similarity index 100% rename from test/chj-home-expected/--/0099-.chj-home-init-accept-email-addresses-with-full-name/_list rename to split-patch/test/chj-home-expected/--/0099-.chj-home-init-accept-email-addresses-with-full-name/_list diff --git a/test/chj-home-expected/--/0100-.chj-home-init-set-scoma-settings/0100-.chj-home-init-set-scoma-settings-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0100-.chj-home-init-set-scoma-settings/0100-.chj-home-init-set-scoma-settings-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0100-.chj-home-init-set-scoma-settings/0100-.chj-home-init-set-scoma-settings-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0100-.chj-home-init-set-scoma-settings/0100-.chj-home-init-set-scoma-settings-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0100-.chj-home-init-set-scoma-settings/_list b/split-patch/test/chj-home-expected/--/0100-.chj-home-init-set-scoma-settings/_list similarity index 100% rename from test/chj-home-expected/--/0100-.chj-home-init-set-scoma-settings/_list rename to split-patch/test/chj-home-expected/--/0100-.chj-home-init-set-scoma-settings/_list diff --git a/test/chj-home-expected/--/0101-.chj-home-init-fix-perms-on-checked-out-directories/0101-.chj-home-init-fix-perms-on-checked-out-directories-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0101-.chj-home-init-fix-perms-on-checked-out-directories/0101-.chj-home-init-fix-perms-on-checked-out-directories-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0101-.chj-home-init-fix-perms-on-checked-out-directories/0101-.chj-home-init-fix-perms-on-checked-out-directories-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0101-.chj-home-init-fix-perms-on-checked-out-directories/0101-.chj-home-init-fix-perms-on-checked-out-directories-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0101-.chj-home-init-fix-perms-on-checked-out-directories/_list b/split-patch/test/chj-home-expected/--/0101-.chj-home-init-fix-perms-on-checked-out-directories/_list similarity index 100% rename from test/chj-home-expected/--/0101-.chj-home-init-fix-perms-on-checked-out-directories/_list rename to split-patch/test/chj-home-expected/--/0101-.chj-home-init-fix-perms-on-checked-out-directories/_list diff --git a/test/chj-home-expected/--/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/_list b/split-patch/test/chj-home-expected/--/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/_list similarity index 100% rename from test/chj-home-expected/--/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/_list rename to split-patch/test/chj-home-expected/--/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/_list diff --git a/test/chj-home-expected/--/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc.patch b/split-patch/test/chj-home-expected/--/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc.patch diff --git a/test/chj-home-expected/--/0103-.bashrc-show-exit-code-on-failing-commands/_list b/split-patch/test/chj-home-expected/--/0103-.bashrc-show-exit-code-on-failing-commands/_list similarity index 100% rename from test/chj-home-expected/--/0103-.bashrc-show-exit-code-on-failing-commands/_list rename to split-patch/test/chj-home-expected/--/0103-.bashrc-show-exit-code-on-failing-commands/_list diff --git a/test/chj-home-expected/--/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info-.bashrc.patch b/split-patch/test/chj-home-expected/--/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info-.bashrc.patch diff --git a/test/chj-home-expected/--/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/_list b/split-patch/test/chj-home-expected/--/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/_list similarity index 100% rename from test/chj-home-expected/--/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/_list rename to split-patch/test/chj-home-expected/--/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/_list diff --git a/test/chj-home-expected/--/0105-.bashrc-show-exit-code-on-a-separate-line/0105-.bashrc-show-exit-code-on-a-separate-line-.bashrc.patch b/split-patch/test/chj-home-expected/--/0105-.bashrc-show-exit-code-on-a-separate-line/0105-.bashrc-show-exit-code-on-a-separate-line-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0105-.bashrc-show-exit-code-on-a-separate-line/0105-.bashrc-show-exit-code-on-a-separate-line-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0105-.bashrc-show-exit-code-on-a-separate-line/0105-.bashrc-show-exit-code-on-a-separate-line-.bashrc.patch diff --git a/test/chj-home-expected/--/0105-.bashrc-show-exit-code-on-a-separate-line/_list b/split-patch/test/chj-home-expected/--/0105-.bashrc-show-exit-code-on-a-separate-line/_list similarity index 100% rename from test/chj-home-expected/--/0105-.bashrc-show-exit-code-on-a-separate-line/_list rename to split-patch/test/chj-home-expected/--/0105-.bashrc-show-exit-code-on-a-separate-line/_list diff --git a/test/chj-home-expected/--/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/0106-Revert-.bashrc-show-exit-code-on-a-separate-line-.bashrc.patch b/split-patch/test/chj-home-expected/--/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/0106-Revert-.bashrc-show-exit-code-on-a-separate-line-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/0106-Revert-.bashrc-show-exit-code-on-a-separate-line-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/0106-Revert-.bashrc-show-exit-code-on-a-separate-line-.bashrc.patch diff --git a/test/chj-home-expected/--/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/_list b/split-patch/test/chj-home-expected/--/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/_list similarity index 100% rename from test/chj-home-expected/--/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/_list rename to split-patch/test/chj-home-expected/--/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/_list diff --git a/test/chj-home-expected/--/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc.patch b/split-patch/test/chj-home-expected/--/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc.patch diff --git a/test/chj-home-expected/--/0107-.bashrc-restructure-prompt-command/_list b/split-patch/test/chj-home-expected/--/0107-.bashrc-restructure-prompt-command/_list similarity index 100% rename from test/chj-home-expected/--/0107-.bashrc-restructure-prompt-command/_list rename to split-patch/test/chj-home-expected/--/0107-.bashrc-restructure-prompt-command/_list diff --git a/test/chj-home-expected/--/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc.patch b/split-patch/test/chj-home-expected/--/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc.patch diff --git a/test/chj-home-expected/--/0108-.bashrc-set-PS1-differently-on-each-iteration/_list b/split-patch/test/chj-home-expected/--/0108-.bashrc-set-PS1-differently-on-each-iteration/_list similarity index 100% rename from test/chj-home-expected/--/0108-.bashrc-set-PS1-differently-on-each-iteration/_list rename to split-patch/test/chj-home-expected/--/0108-.bashrc-set-PS1-differently-on-each-iteration/_list diff --git a/test/chj-home-expected/--/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc.patch b/split-patch/test/chj-home-expected/--/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc.patch diff --git a/test/chj-home-expected/--/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/_list b/split-patch/test/chj-home-expected/--/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/_list similarity index 100% rename from test/chj-home-expected/--/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/_list rename to split-patch/test/chj-home-expected/--/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/_list diff --git a/test/chj-home-expected/--/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc.patch b/split-patch/test/chj-home-expected/--/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc.patch diff --git a/test/chj-home-expected/--/0110-Revert-.bashrc-restructure-prompt-command/_list b/split-patch/test/chj-home-expected/--/0110-Revert-.bashrc-restructure-prompt-command/_list similarity index 100% rename from test/chj-home-expected/--/0110-Revert-.bashrc-restructure-prompt-command/_list rename to split-patch/test/chj-home-expected/--/0110-Revert-.bashrc-restructure-prompt-command/_list diff --git a/test/chj-home-expected/--/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc.patch b/split-patch/test/chj-home-expected/--/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc.patch diff --git a/test/chj-home-expected/--/0111-.bashrc-does-not-work/_list b/split-patch/test/chj-home-expected/--/0111-.bashrc-does-not-work/_list similarity index 100% rename from test/chj-home-expected/--/0111-.bashrc-does-not-work/_list rename to split-patch/test/chj-home-expected/--/0111-.bashrc-does-not-work/_list diff --git a/test/chj-home-expected/--/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc.patch b/split-patch/test/chj-home-expected/--/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc.patch diff --git a/test/chj-home-expected/--/0112-.bashrc-finally-working/_list b/split-patch/test/chj-home-expected/--/0112-.bashrc-finally-working/_list similarity index 100% rename from test/chj-home-expected/--/0112-.bashrc-finally-working/_list rename to split-patch/test/chj-home-expected/--/0112-.bashrc-finally-working/_list diff --git a/test/chj-home-expected/--/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed-.bashrc.patch b/split-patch/test/chj-home-expected/--/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed-.bashrc.patch diff --git a/test/chj-home-expected/--/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/_list b/split-patch/test/chj-home-expected/--/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/_list similarity index 100% rename from test/chj-home-expected/--/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/_list rename to split-patch/test/chj-home-expected/--/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/_list diff --git a/test/chj-home-expected/--/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now-.bashrc.patch b/split-patch/test/chj-home-expected/--/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now-.bashrc.patch diff --git a/test/chj-home-expected/--/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/_list b/split-patch/test/chj-home-expected/--/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/_list similarity index 100% rename from test/chj-home-expected/--/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/_list rename to split-patch/test/chj-home-expected/--/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/_list diff --git a/test/chj-home-expected/--/0115-.bashrc-document-the-fix/0115-.bashrc-document-the-fix-.bashrc.patch b/split-patch/test/chj-home-expected/--/0115-.bashrc-document-the-fix/0115-.bashrc-document-the-fix-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0115-.bashrc-document-the-fix/0115-.bashrc-document-the-fix-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0115-.bashrc-document-the-fix/0115-.bashrc-document-the-fix-.bashrc.patch diff --git a/test/chj-home-expected/--/0115-.bashrc-document-the-fix/_list b/split-patch/test/chj-home-expected/--/0115-.bashrc-document-the-fix/_list similarity index 100% rename from test/chj-home-expected/--/0115-.bashrc-document-the-fix/_list rename to split-patch/test/chj-home-expected/--/0115-.bashrc-document-the-fix/_list diff --git a/test/chj-home-expected/--/0116-.bash_profile-finally-remove-ulimit-again/0116-.bash_profile-finally-remove-ulimit-again-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0116-.bash_profile-finally-remove-ulimit-again/0116-.bash_profile-finally-remove-ulimit-again-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0116-.bash_profile-finally-remove-ulimit-again/0116-.bash_profile-finally-remove-ulimit-again-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0116-.bash_profile-finally-remove-ulimit-again/0116-.bash_profile-finally-remove-ulimit-again-.bash_profile.patch diff --git a/test/chj-home-expected/--/0116-.bash_profile-finally-remove-ulimit-again/_list b/split-patch/test/chj-home-expected/--/0116-.bash_profile-finally-remove-ulimit-again/_list similarity index 100% rename from test/chj-home-expected/--/0116-.bash_profile-finally-remove-ulimit-again/_list rename to split-patch/test/chj-home-expected/--/0116-.bash_profile-finally-remove-ulimit-again/_list diff --git a/test/chj-home-expected/--/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc.patch b/split-patch/test/chj-home-expected/--/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc.patch diff --git a/test/chj-home-expected/--/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/_list b/split-patch/test/chj-home-expected/--/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/_list similarity index 100% rename from test/chj-home-expected/--/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/_list rename to split-patch/test/chj-home-expected/--/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/_list diff --git a/test/chj-home-expected/--/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc.patch b/split-patch/test/chj-home-expected/--/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc.patch diff --git a/test/chj-home-expected/--/0118-.bashrc-even-nicer/_list b/split-patch/test/chj-home-expected/--/0118-.bashrc-even-nicer/_list similarity index 100% rename from test/chj-home-expected/--/0118-.bashrc-even-nicer/_list rename to split-patch/test/chj-home-expected/--/0118-.bashrc-even-nicer/_list diff --git a/test/chj-home-expected/--/0119-.bashrc-go-back-to-red/0119-.bashrc-go-back-to-red-.bashrc.patch b/split-patch/test/chj-home-expected/--/0119-.bashrc-go-back-to-red/0119-.bashrc-go-back-to-red-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0119-.bashrc-go-back-to-red/0119-.bashrc-go-back-to-red-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0119-.bashrc-go-back-to-red/0119-.bashrc-go-back-to-red-.bashrc.patch diff --git a/test/chj-home-expected/--/0119-.bashrc-go-back-to-red/_list b/split-patch/test/chj-home-expected/--/0119-.bashrc-go-back-to-red/_list similarity index 100% rename from test/chj-home-expected/--/0119-.bashrc-go-back-to-red/_list rename to split-patch/test/chj-home-expected/--/0119-.bashrc-go-back-to-red/_list diff --git a/test/chj-home-expected/--/0120-Formatting/0120-Formatting-.bashrc.patch b/split-patch/test/chj-home-expected/--/0120-Formatting/0120-Formatting-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0120-Formatting/0120-Formatting-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0120-Formatting/0120-Formatting-.bashrc.patch diff --git a/test/chj-home-expected/--/0120-Formatting/_list b/split-patch/test/chj-home-expected/--/0120-Formatting/_list similarity index 100% rename from test/chj-home-expected/--/0120-Formatting/_list rename to split-patch/test/chj-home-expected/--/0120-Formatting/_list diff --git a/test/chj-home-expected/--/0121-Abstraction/0121-Abstraction-.bashrc.patch b/split-patch/test/chj-home-expected/--/0121-Abstraction/0121-Abstraction-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0121-Abstraction/0121-Abstraction-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0121-Abstraction/0121-Abstraction-.bashrc.patch diff --git a/test/chj-home-expected/--/0121-Abstraction/_list b/split-patch/test/chj-home-expected/--/0121-Abstraction/_list similarity index 100% rename from test/chj-home-expected/--/0121-Abstraction/_list rename to split-patch/test/chj-home-expected/--/0121-Abstraction/_list diff --git a/test/chj-home-expected/--/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders-.bashrc.patch b/split-patch/test/chj-home-expected/--/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders-.bashrc.patch diff --git a/test/chj-home-expected/--/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/_list b/split-patch/test/chj-home-expected/--/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/_list similarity index 100% rename from test/chj-home-expected/--/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/_list rename to split-patch/test/chj-home-expected/--/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/_list diff --git a/test/chj-home-expected/--/0123-.chj-home-init-rely-on-.METADATA-v2.options/0123-.chj-home-init-rely-on-.METADATA-v2.options-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0123-.chj-home-init-rely-on-.METADATA-v2.options/0123-.chj-home-init-rely-on-.METADATA-v2.options-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0123-.chj-home-init-rely-on-.METADATA-v2.options/0123-.chj-home-init-rely-on-.METADATA-v2.options-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0123-.chj-home-init-rely-on-.METADATA-v2.options/0123-.chj-home-init-rely-on-.METADATA-v2.options-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0123-.chj-home-init-rely-on-.METADATA-v2.options/_list b/split-patch/test/chj-home-expected/--/0123-.chj-home-init-rely-on-.METADATA-v2.options/_list similarity index 100% rename from test/chj-home-expected/--/0123-.chj-home-init-rely-on-.METADATA-v2.options/_list rename to split-patch/test/chj-home-expected/--/0123-.chj-home-init-rely-on-.METADATA-v2.options/_list diff --git a/test/chj-home-expected/--/0124-.chj-home-init-make-.METADATA-v2.ignore-too/0124-.chj-home-init-make-.METADATA-v2.ignore-too-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0124-.chj-home-init-make-.METADATA-v2.ignore-too/0124-.chj-home-init-make-.METADATA-v2.ignore-too-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0124-.chj-home-init-make-.METADATA-v2.ignore-too/0124-.chj-home-init-make-.METADATA-v2.ignore-too-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0124-.chj-home-init-make-.METADATA-v2.ignore-too/0124-.chj-home-init-make-.METADATA-v2.ignore-too-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0124-.chj-home-init-make-.METADATA-v2.ignore-too/_list b/split-patch/test/chj-home-expected/--/0124-.chj-home-init-make-.METADATA-v2.ignore-too/_list similarity index 100% rename from test/chj-home-expected/--/0124-.chj-home-init-make-.METADATA-v2.ignore-too/_list rename to split-patch/test/chj-home-expected/--/0124-.chj-home-init-make-.METADATA-v2.ignore-too/_list diff --git a/test/chj-home-expected/--/0125-.xscreensaver/0125-.xscreensaver-.xscreensaver.patch b/split-patch/test/chj-home-expected/--/0125-.xscreensaver/0125-.xscreensaver-.xscreensaver.patch similarity index 100% rename from test/chj-home-expected/--/0125-.xscreensaver/0125-.xscreensaver-.xscreensaver.patch rename to split-patch/test/chj-home-expected/--/0125-.xscreensaver/0125-.xscreensaver-.xscreensaver.patch diff --git a/test/chj-home-expected/--/0125-.xscreensaver/_list b/split-patch/test/chj-home-expected/--/0125-.xscreensaver/_list similarity index 100% rename from test/chj-home-expected/--/0125-.xscreensaver/_list rename to split-patch/test/chj-home-expected/--/0125-.xscreensaver/_list diff --git a/test/chj-home-expected/--/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull.patch b/split-patch/test/chj-home-expected/--/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull.patch similarity index 100% rename from test/chj-home-expected/--/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull.patch rename to split-patch/test/chj-home-expected/--/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull.patch diff --git a/test/chj-home-expected/--/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.xscreensaver.patch b/split-patch/test/chj-home-expected/--/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.xscreensaver.patch similarity index 100% rename from test/chj-home-expected/--/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.xscreensaver.patch rename to split-patch/test/chj-home-expected/--/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.xscreensaver.patch diff --git a/test/chj-home-expected/--/0126-Move-.xscreensaver-to-.chj-home-again/_list b/split-patch/test/chj-home-expected/--/0126-Move-.xscreensaver-to-.chj-home-again/_list similarity index 100% rename from test/chj-home-expected/--/0126-Move-.xscreensaver-to-.chj-home-again/_list rename to split-patch/test/chj-home-expected/--/0126-Move-.xscreensaver-to-.chj-home-again/_list diff --git a/test/chj-home-expected/--/0127-Rename/0127-Rename-.chj-home_.xscreensaver.patch b/split-patch/test/chj-home-expected/--/0127-Rename/0127-Rename-.chj-home_.xscreensaver.patch similarity index 100% rename from test/chj-home-expected/--/0127-Rename/0127-Rename-.chj-home_.xscreensaver.patch rename to split-patch/test/chj-home-expected/--/0127-Rename/0127-Rename-.chj-home_.xscreensaver.patch diff --git a/test/chj-home-expected/--/0127-Rename/_list b/split-patch/test/chj-home-expected/--/0127-Rename/_list similarity index 100% rename from test/chj-home-expected/--/0127-Rename/_list rename to split-patch/test/chj-home-expected/--/0127-Rename/_list diff --git a/test/chj-home-expected/--/0128-init-install-.xscreensaver-if-not-already-exists/0128-init-install-.xscreensaver-if-not-already-exists-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0128-init-install-.xscreensaver-if-not-already-exists/0128-init-install-.xscreensaver-if-not-already-exists-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0128-init-install-.xscreensaver-if-not-already-exists/0128-init-install-.xscreensaver-if-not-already-exists-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0128-init-install-.xscreensaver-if-not-already-exists/0128-init-install-.xscreensaver-if-not-already-exists-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0128-init-install-.xscreensaver-if-not-already-exists/_list b/split-patch/test/chj-home-expected/--/0128-init-install-.xscreensaver-if-not-already-exists/_list similarity index 100% rename from test/chj-home-expected/--/0128-init-install-.xscreensaver-if-not-already-exists/_list rename to split-patch/test/chj-home-expected/--/0128-init-install-.xscreensaver-if-not-already-exists/_list diff --git a/test/chj-home-expected/--/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0129-init-more-fix-perms/_list b/split-patch/test/chj-home-expected/--/0129-init-more-fix-perms/_list similarity index 100% rename from test/chj-home-expected/--/0129-init-more-fix-perms/_list rename to split-patch/test/chj-home-expected/--/0129-init-more-fix-perms/_list diff --git a/test/chj-home-expected/--/0130-.bashrc-add-j-same-as-cj/0130-.bashrc-add-j-same-as-cj-.bashrc.patch b/split-patch/test/chj-home-expected/--/0130-.bashrc-add-j-same-as-cj/0130-.bashrc-add-j-same-as-cj-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0130-.bashrc-add-j-same-as-cj/0130-.bashrc-add-j-same-as-cj-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0130-.bashrc-add-j-same-as-cj/0130-.bashrc-add-j-same-as-cj-.bashrc.patch diff --git a/test/chj-home-expected/--/0130-.bashrc-add-j-same-as-cj/_list b/split-patch/test/chj-home-expected/--/0130-.bashrc-add-j-same-as-cj/_list similarity index 100% rename from test/chj-home-expected/--/0130-.bashrc-add-j-same-as-cj/_list rename to split-patch/test/chj-home-expected/--/0130-.bashrc-add-j-same-as-cj/_list diff --git a/test/chj-home-expected/--/0131-.bashrc-add-cgdi/0131-.bashrc-add-cgdi-.bashrc.patch b/split-patch/test/chj-home-expected/--/0131-.bashrc-add-cgdi/0131-.bashrc-add-cgdi-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0131-.bashrc-add-cgdi/0131-.bashrc-add-cgdi-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0131-.bashrc-add-cgdi/0131-.bashrc-add-cgdi-.bashrc.patch diff --git a/test/chj-home-expected/--/0131-.bashrc-add-cgdi/_list b/split-patch/test/chj-home-expected/--/0131-.bashrc-add-cgdi/_list similarity index 100% rename from test/chj-home-expected/--/0131-.bashrc-add-cgdi/_list rename to split-patch/test/chj-home-expected/--/0131-.bashrc-add-cgdi/_list diff --git a/test/chj-home-expected/--/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc.patch b/split-patch/test/chj-home-expected/--/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc.patch diff --git a/test/chj-home-expected/--/0132-.bashrc-cgdi-fix-proper-error-handling/_list b/split-patch/test/chj-home-expected/--/0132-.bashrc-cgdi-fix-proper-error-handling/_list similarity index 100% rename from test/chj-home-expected/--/0132-.bashrc-cgdi-fix-proper-error-handling/_list rename to split-patch/test/chj-home-expected/--/0132-.bashrc-cgdi-fix-proper-error-handling/_list diff --git a/test/chj-home-expected/--/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc.patch b/split-patch/test/chj-home-expected/--/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc.patch diff --git a/test/chj-home-expected/--/0133-.bashrc-add-cgd/_list b/split-patch/test/chj-home-expected/--/0133-.bashrc-add-cgd/_list similarity index 100% rename from test/chj-home-expected/--/0133-.bashrc-add-cgd/_list rename to split-patch/test/chj-home-expected/--/0133-.bashrc-add-cgd/_list diff --git a/test/chj-home-expected/--/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver.patch b/split-patch/test/chj-home-expected/--/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver.patch similarity index 100% rename from test/chj-home-expected/--/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver.patch rename to split-patch/test/chj-home-expected/--/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver.patch diff --git a/test/chj-home-expected/--/0134-.xscreensaver-blank-and-off-fast/_list b/split-patch/test/chj-home-expected/--/0134-.xscreensaver-blank-and-off-fast/_list similarity index 100% rename from test/chj-home-expected/--/0134-.xscreensaver-blank-and-off-fast/_list rename to split-patch/test/chj-home-expected/--/0134-.xscreensaver-blank-and-off-fast/_list diff --git a/test/chj-home-expected/--/0135-Add-cgi-cgii/0135-Add-cgi-cgii-.bashrc.patch b/split-patch/test/chj-home-expected/--/0135-Add-cgi-cgii/0135-Add-cgi-cgii-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0135-Add-cgi-cgii/0135-Add-cgi-cgii-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0135-Add-cgi-cgii/0135-Add-cgi-cgii-.bashrc.patch diff --git a/test/chj-home-expected/--/0135-Add-cgi-cgii/_list b/split-patch/test/chj-home-expected/--/0135-Add-cgi-cgii/_list similarity index 100% rename from test/chj-home-expected/--/0135-Add-cgi-cgii/_list rename to split-patch/test/chj-home-expected/--/0135-Add-cgi-cgii/_list diff --git a/test/chj-home-expected/--/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver.patch b/split-patch/test/chj-home-expected/--/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver.patch similarity index 100% rename from test/chj-home-expected/--/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver.patch rename to split-patch/test/chj-home-expected/--/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver.patch diff --git a/test/chj-home-expected/--/0136-.xscreensaver-oh-that-was-bad-try-this/_list b/split-patch/test/chj-home-expected/--/0136-.xscreensaver-oh-that-was-bad-try-this/_list similarity index 100% rename from test/chj-home-expected/--/0136-.xscreensaver-oh-that-was-bad-try-this/_list rename to split-patch/test/chj-home-expected/--/0136-.xscreensaver-oh-that-was-bad-try-this/_list diff --git a/test/chj-home-expected/--/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver.patch b/split-patch/test/chj-home-expected/--/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver.patch similarity index 100% rename from test/chj-home-expected/--/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver.patch rename to split-patch/test/chj-home-expected/--/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver.patch diff --git a/test/chj-home-expected/--/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/_list b/split-patch/test/chj-home-expected/--/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/_list similarity index 100% rename from test/chj-home-expected/--/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/_list rename to split-patch/test/chj-home-expected/--/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/_list diff --git a/test/chj-home-expected/--/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver.patch b/split-patch/test/chj-home-expected/--/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver.patch similarity index 100% rename from test/chj-home-expected/--/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver.patch rename to split-patch/test/chj-home-expected/--/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver.patch diff --git a/test/chj-home-expected/--/0138-.xscreensaver-turn-off-dpms/_list b/split-patch/test/chj-home-expected/--/0138-.xscreensaver-turn-off-dpms/_list similarity index 100% rename from test/chj-home-expected/--/0138-.xscreensaver-turn-off-dpms/_list rename to split-patch/test/chj-home-expected/--/0138-.xscreensaver-turn-off-dpms/_list diff --git a/test/chj-home-expected/--/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver.patch b/split-patch/test/chj-home-expected/--/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver.patch similarity index 100% rename from test/chj-home-expected/--/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver.patch rename to split-patch/test/chj-home-expected/--/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver.patch diff --git a/test/chj-home-expected/--/0139-.xscreensaver-blank-only/_list b/split-patch/test/chj-home-expected/--/0139-.xscreensaver-blank-only/_list similarity index 100% rename from test/chj-home-expected/--/0139-.xscreensaver-blank-only/_list rename to split-patch/test/chj-home-expected/--/0139-.xscreensaver-blank-only/_list diff --git a/test/chj-home-expected/--/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_.gdbinit.patch b/split-patch/test/chj-home-expected/--/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_.gdbinit.patch similarity index 100% rename from test/chj-home-expected/--/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_.gdbinit.patch rename to split-patch/test/chj-home-expected/--/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_.gdbinit.patch diff --git a/test/chj-home-expected/--/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0140-Add-a-default-.gdbinit/_list b/split-patch/test/chj-home-expected/--/0140-Add-a-default-.gdbinit/_list similarity index 100% rename from test/chj-home-expected/--/0140-Add-a-default-.gdbinit/_list rename to split-patch/test/chj-home-expected/--/0140-Add-a-default-.gdbinit/_list diff --git a/test/chj-home-expected/--/0141-Set-BROWSER-to-firefox-by-default/0141-Set-BROWSER-to-firefox-by-default-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0141-Set-BROWSER-to-firefox-by-default/0141-Set-BROWSER-to-firefox-by-default-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0141-Set-BROWSER-to-firefox-by-default/0141-Set-BROWSER-to-firefox-by-default-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0141-Set-BROWSER-to-firefox-by-default/0141-Set-BROWSER-to-firefox-by-default-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0141-Set-BROWSER-to-firefox-by-default/_list b/split-patch/test/chj-home-expected/--/0141-Set-BROWSER-to-firefox-by-default/_list similarity index 100% rename from test/chj-home-expected/--/0141-Set-BROWSER-to-firefox-by-default/_list rename to split-patch/test/chj-home-expected/--/0141-Set-BROWSER-to-firefox-by-default/_list diff --git a/test/chj-home-expected/--/0142-.bashrc-remove-j-again-not-using-it/0142-.bashrc-remove-j-again-not-using-it-.bashrc.patch b/split-patch/test/chj-home-expected/--/0142-.bashrc-remove-j-again-not-using-it/0142-.bashrc-remove-j-again-not-using-it-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0142-.bashrc-remove-j-again-not-using-it/0142-.bashrc-remove-j-again-not-using-it-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0142-.bashrc-remove-j-again-not-using-it/0142-.bashrc-remove-j-again-not-using-it-.bashrc.patch diff --git a/test/chj-home-expected/--/0142-.bashrc-remove-j-again-not-using-it/_list b/split-patch/test/chj-home-expected/--/0142-.bashrc-remove-j-again-not-using-it/_list similarity index 100% rename from test/chj-home-expected/--/0142-.bashrc-remove-j-again-not-using-it/_list rename to split-patch/test/chj-home-expected/--/0142-.bashrc-remove-j-again-not-using-it/_list diff --git a/test/chj-home-expected/--/0143-.bashrc-add-ce/0143-.bashrc-add-ce-.bashrc.patch b/split-patch/test/chj-home-expected/--/0143-.bashrc-add-ce/0143-.bashrc-add-ce-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0143-.bashrc-add-ce/0143-.bashrc-add-ce-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0143-.bashrc-add-ce/0143-.bashrc-add-ce-.bashrc.patch diff --git a/test/chj-home-expected/--/0143-.bashrc-add-ce/_list b/split-patch/test/chj-home-expected/--/0143-.bashrc-add-ce/_list similarity index 100% rename from test/chj-home-expected/--/0143-.bashrc-add-ce/_list rename to split-patch/test/chj-home-expected/--/0143-.bashrc-add-ce/_list diff --git a/test/chj-home-expected/--/0144-.bashrc-add-cdnn-cdnnn/0144-.bashrc-add-cdnn-cdnnn-.bashrc.patch b/split-patch/test/chj-home-expected/--/0144-.bashrc-add-cdnn-cdnnn/0144-.bashrc-add-cdnn-cdnnn-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0144-.bashrc-add-cdnn-cdnnn/0144-.bashrc-add-cdnn-cdnnn-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0144-.bashrc-add-cdnn-cdnnn/0144-.bashrc-add-cdnn-cdnnn-.bashrc.patch diff --git a/test/chj-home-expected/--/0144-.bashrc-add-cdnn-cdnnn/_list b/split-patch/test/chj-home-expected/--/0144-.bashrc-add-cdnn-cdnnn/_list similarity index 100% rename from test/chj-home-expected/--/0144-.bashrc-add-cdnn-cdnnn/_list rename to split-patch/test/chj-home-expected/--/0144-.bashrc-add-cdnn-cdnnn/_list diff --git a/test/chj-home-expected/--/0145-Change-background-color-for-errors-to-bright-yellow/0145-Change-background-color-for-errors-to-bright-yellow-.bashrc.patch b/split-patch/test/chj-home-expected/--/0145-Change-background-color-for-errors-to-bright-yellow/0145-Change-background-color-for-errors-to-bright-yellow-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0145-Change-background-color-for-errors-to-bright-yellow/0145-Change-background-color-for-errors-to-bright-yellow-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0145-Change-background-color-for-errors-to-bright-yellow/0145-Change-background-color-for-errors-to-bright-yellow-.bashrc.patch diff --git a/test/chj-home-expected/--/0145-Change-background-color-for-errors-to-bright-yellow/_list b/split-patch/test/chj-home-expected/--/0145-Change-background-color-for-errors-to-bright-yellow/_list similarity index 100% rename from test/chj-home-expected/--/0145-Change-background-color-for-errors-to-bright-yellow/_list rename to split-patch/test/chj-home-expected/--/0145-Change-background-color-for-errors-to-bright-yellow/_list diff --git a/test/chj-home-expected/--/0146-Background-orange/0146-Background-orange-.bashrc.patch b/split-patch/test/chj-home-expected/--/0146-Background-orange/0146-Background-orange-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0146-Background-orange/0146-Background-orange-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0146-Background-orange/0146-Background-orange-.bashrc.patch diff --git a/test/chj-home-expected/--/0146-Background-orange/_list b/split-patch/test/chj-home-expected/--/0146-Background-orange/_list similarity index 100% rename from test/chj-home-expected/--/0146-Background-orange/_list rename to split-patch/test/chj-home-expected/--/0146-Background-orange/_list diff --git a/test/chj-home-expected/--/0147-Revert-Background-orange/0147-Revert-Background-orange-.bashrc.patch b/split-patch/test/chj-home-expected/--/0147-Revert-Background-orange/0147-Revert-Background-orange-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0147-Revert-Background-orange/0147-Revert-Background-orange-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0147-Revert-Background-orange/0147-Revert-Background-orange-.bashrc.patch diff --git a/test/chj-home-expected/--/0147-Revert-Background-orange/_list b/split-patch/test/chj-home-expected/--/0147-Revert-Background-orange/_list similarity index 100% rename from test/chj-home-expected/--/0147-Revert-Background-orange/_list rename to split-patch/test/chj-home-expected/--/0147-Revert-Background-orange/_list diff --git a/test/chj-home-expected/--/0148-Change-background-back-to-red/0148-Change-background-back-to-red-.bashrc.patch b/split-patch/test/chj-home-expected/--/0148-Change-background-back-to-red/0148-Change-background-back-to-red-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0148-Change-background-back-to-red/0148-Change-background-back-to-red-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0148-Change-background-back-to-red/0148-Change-background-back-to-red-.bashrc.patch diff --git a/test/chj-home-expected/--/0148-Change-background-back-to-red/_list b/split-patch/test/chj-home-expected/--/0148-Change-background-back-to-red/_list similarity index 100% rename from test/chj-home-expected/--/0148-Change-background-back-to-red/_list rename to split-patch/test/chj-home-expected/--/0148-Change-background-back-to-red/_list diff --git a/test/chj-home-expected/--/0149-.bashrc-wg-is-also-provided-by-wireguard-now/0149-.bashrc-wg-is-also-provided-by-wireguard-now-.bashrc.patch b/split-patch/test/chj-home-expected/--/0149-.bashrc-wg-is-also-provided-by-wireguard-now/0149-.bashrc-wg-is-also-provided-by-wireguard-now-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0149-.bashrc-wg-is-also-provided-by-wireguard-now/0149-.bashrc-wg-is-also-provided-by-wireguard-now-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0149-.bashrc-wg-is-also-provided-by-wireguard-now/0149-.bashrc-wg-is-also-provided-by-wireguard-now-.bashrc.patch diff --git a/test/chj-home-expected/--/0149-.bashrc-wg-is-also-provided-by-wireguard-now/_list b/split-patch/test/chj-home-expected/--/0149-.bashrc-wg-is-also-provided-by-wireguard-now/_list similarity index 100% rename from test/chj-home-expected/--/0149-.bashrc-wg-is-also-provided-by-wireguard-now/_list rename to split-patch/test/chj-home-expected/--/0149-.bashrc-wg-is-also-provided-by-wireguard-now/_list diff --git a/test/chj-home-expected/--/0150-.bashrc-replace-ad-hoc-code-with-lastdir/0150-.bashrc-replace-ad-hoc-code-with-lastdir-.bashrc.patch b/split-patch/test/chj-home-expected/--/0150-.bashrc-replace-ad-hoc-code-with-lastdir/0150-.bashrc-replace-ad-hoc-code-with-lastdir-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0150-.bashrc-replace-ad-hoc-code-with-lastdir/0150-.bashrc-replace-ad-hoc-code-with-lastdir-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0150-.bashrc-replace-ad-hoc-code-with-lastdir/0150-.bashrc-replace-ad-hoc-code-with-lastdir-.bashrc.patch diff --git a/test/chj-home-expected/--/0150-.bashrc-replace-ad-hoc-code-with-lastdir/_list b/split-patch/test/chj-home-expected/--/0150-.bashrc-replace-ad-hoc-code-with-lastdir/_list similarity index 100% rename from test/chj-home-expected/--/0150-.bashrc-replace-ad-hoc-code-with-lastdir/_list rename to split-patch/test/chj-home-expected/--/0150-.bashrc-replace-ad-hoc-code-with-lastdir/_list diff --git a/test/chj-home-expected/--/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc.patch b/split-patch/test/chj-home-expected/--/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc.patch diff --git a/test/chj-home-expected/--/0151-.bashrc-cgd-accept-index-argument/_list b/split-patch/test/chj-home-expected/--/0151-.bashrc-cgd-accept-index-argument/_list similarity index 100% rename from test/chj-home-expected/--/0151-.bashrc-cgd-accept-index-argument/_list rename to split-patch/test/chj-home-expected/--/0151-.bashrc-cgd-accept-index-argument/_list diff --git a/test/chj-home-expected/--/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index-.bashrc.patch b/split-patch/test/chj-home-expected/--/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index-.bashrc.patch diff --git a/test/chj-home-expected/--/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/_list b/split-patch/test/chj-home-expected/--/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/_list similarity index 100% rename from test/chj-home-expected/--/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/_list rename to split-patch/test/chj-home-expected/--/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/_list diff --git a/test/chj-home-expected/--/0153-.bashrc-add-ct/0153-.bashrc-add-ct-.bashrc.patch b/split-patch/test/chj-home-expected/--/0153-.bashrc-add-ct/0153-.bashrc-add-ct-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0153-.bashrc-add-ct/0153-.bashrc-add-ct-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0153-.bashrc-add-ct/0153-.bashrc-add-ct-.bashrc.patch diff --git a/test/chj-home-expected/--/0153-.bashrc-add-ct/_list b/split-patch/test/chj-home-expected/--/0153-.bashrc-add-ct/_list similarity index 100% rename from test/chj-home-expected/--/0153-.bashrc-add-ct/_list rename to split-patch/test/chj-home-expected/--/0153-.bashrc-add-ct/_list diff --git a/test/chj-home-expected/--/0154-.bashrc-update-for-lastitem-from-chj-rustbin/0154-.bashrc-update-for-lastitem-from-chj-rustbin-.bashrc.patch b/split-patch/test/chj-home-expected/--/0154-.bashrc-update-for-lastitem-from-chj-rustbin/0154-.bashrc-update-for-lastitem-from-chj-rustbin-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0154-.bashrc-update-for-lastitem-from-chj-rustbin/0154-.bashrc-update-for-lastitem-from-chj-rustbin-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0154-.bashrc-update-for-lastitem-from-chj-rustbin/0154-.bashrc-update-for-lastitem-from-chj-rustbin-.bashrc.patch diff --git a/test/chj-home-expected/--/0154-.bashrc-update-for-lastitem-from-chj-rustbin/_list b/split-patch/test/chj-home-expected/--/0154-.bashrc-update-for-lastitem-from-chj-rustbin/_list similarity index 100% rename from test/chj-home-expected/--/0154-.bashrc-update-for-lastitem-from-chj-rustbin/_list rename to split-patch/test/chj-home-expected/--/0154-.bashrc-update-for-lastitem-from-chj-rustbin/_list diff --git a/test/chj-home-expected/--/0155-.Xresources-finally-make-rxvt-a-bit-larger/0155-.Xresources-finally-make-rxvt-a-bit-larger-.Xresources.patch b/split-patch/test/chj-home-expected/--/0155-.Xresources-finally-make-rxvt-a-bit-larger/0155-.Xresources-finally-make-rxvt-a-bit-larger-.Xresources.patch similarity index 100% rename from test/chj-home-expected/--/0155-.Xresources-finally-make-rxvt-a-bit-larger/0155-.Xresources-finally-make-rxvt-a-bit-larger-.Xresources.patch rename to split-patch/test/chj-home-expected/--/0155-.Xresources-finally-make-rxvt-a-bit-larger/0155-.Xresources-finally-make-rxvt-a-bit-larger-.Xresources.patch diff --git a/test/chj-home-expected/--/0155-.Xresources-finally-make-rxvt-a-bit-larger/_list b/split-patch/test/chj-home-expected/--/0155-.Xresources-finally-make-rxvt-a-bit-larger/_list similarity index 100% rename from test/chj-home-expected/--/0155-.Xresources-finally-make-rxvt-a-bit-larger/_list rename to split-patch/test/chj-home-expected/--/0155-.Xresources-finally-make-rxvt-a-bit-larger/_list diff --git a/test/chj-home-expected/--/0156-.xmodmaprc-change-print-screen-button-back-to-Print/0156-.xmodmaprc-change-print-screen-button-back-to-Print-.xmodmaprc.patch b/split-patch/test/chj-home-expected/--/0156-.xmodmaprc-change-print-screen-button-back-to-Print/0156-.xmodmaprc-change-print-screen-button-back-to-Print-.xmodmaprc.patch similarity index 100% rename from test/chj-home-expected/--/0156-.xmodmaprc-change-print-screen-button-back-to-Print/0156-.xmodmaprc-change-print-screen-button-back-to-Print-.xmodmaprc.patch rename to split-patch/test/chj-home-expected/--/0156-.xmodmaprc-change-print-screen-button-back-to-Print/0156-.xmodmaprc-change-print-screen-button-back-to-Print-.xmodmaprc.patch diff --git a/test/chj-home-expected/--/0156-.xmodmaprc-change-print-screen-button-back-to-Print/_list b/split-patch/test/chj-home-expected/--/0156-.xmodmaprc-change-print-screen-button-back-to-Print/_list similarity index 100% rename from test/chj-home-expected/--/0156-.xmodmaprc-change-print-screen-button-back-to-Print/_list rename to split-patch/test/chj-home-expected/--/0156-.xmodmaprc-change-print-screen-button-back-to-Print/_list diff --git a/test/chj-home-expected/--/0157-.bash_profile-add-my-new-key-fingerprint/0157-.bash_profile-add-my-new-key-fingerprint-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0157-.bash_profile-add-my-new-key-fingerprint/0157-.bash_profile-add-my-new-key-fingerprint-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0157-.bash_profile-add-my-new-key-fingerprint/0157-.bash_profile-add-my-new-key-fingerprint-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0157-.bash_profile-add-my-new-key-fingerprint/0157-.bash_profile-add-my-new-key-fingerprint-.bash_profile.patch diff --git a/test/chj-home-expected/--/0157-.bash_profile-add-my-new-key-fingerprint/_list b/split-patch/test/chj-home-expected/--/0157-.bash_profile-add-my-new-key-fingerprint/_list similarity index 100% rename from test/chj-home-expected/--/0157-.bash_profile-add-my-new-key-fingerprint/_list rename to split-patch/test/chj-home-expected/--/0157-.bash_profile-add-my-new-key-fingerprint/_list diff --git a/test/chj-home-expected/--/0158-.chj-home-init-Git-rebase-false/0158-.chj-home-init-Git-rebase-false-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0158-.chj-home-init-Git-rebase-false/0158-.chj-home-init-Git-rebase-false-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0158-.chj-home-init-Git-rebase-false/0158-.chj-home-init-Git-rebase-false-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0158-.chj-home-init-Git-rebase-false/0158-.chj-home-init-Git-rebase-false-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0158-.chj-home-init-Git-rebase-false/_list b/split-patch/test/chj-home-expected/--/0158-.chj-home-init-Git-rebase-false/_list similarity index 100% rename from test/chj-home-expected/--/0158-.chj-home-init-Git-rebase-false/_list rename to split-patch/test/chj-home-expected/--/0158-.chj-home-init-Git-rebase-false/_list diff --git a/test/chj-home-expected/--/0159-.gitignore_global-C-development/0159-.gitignore_global-C-development-.gitignore_global.patch b/split-patch/test/chj-home-expected/--/0159-.gitignore_global-C-development/0159-.gitignore_global-C-development-.gitignore_global.patch similarity index 100% rename from test/chj-home-expected/--/0159-.gitignore_global-C-development/0159-.gitignore_global-C-development-.gitignore_global.patch rename to split-patch/test/chj-home-expected/--/0159-.gitignore_global-C-development/0159-.gitignore_global-C-development-.gitignore_global.patch diff --git a/test/chj-home-expected/--/0159-.gitignore_global-C-development/_list b/split-patch/test/chj-home-expected/--/0159-.gitignore_global-C-development/_list similarity index 100% rename from test/chj-home-expected/--/0159-.gitignore_global-C-development/_list rename to split-patch/test/chj-home-expected/--/0159-.gitignore_global-C-development/_list diff --git a/test/chj-home-expected/--/0160-.bashrc-update-wg-alias/0160-.bashrc-update-wg-alias-.bashrc.patch b/split-patch/test/chj-home-expected/--/0160-.bashrc-update-wg-alias/0160-.bashrc-update-wg-alias-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0160-.bashrc-update-wg-alias/0160-.bashrc-update-wg-alias-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0160-.bashrc-update-wg-alias/0160-.bashrc-update-wg-alias-.bashrc.patch diff --git a/test/chj-home-expected/--/0160-.bashrc-update-wg-alias/_list b/split-patch/test/chj-home-expected/--/0160-.bashrc-update-wg-alias/_list similarity index 100% rename from test/chj-home-expected/--/0160-.bashrc-update-wg-alias/_list rename to split-patch/test/chj-home-expected/--/0160-.bashrc-update-wg-alias/_list diff --git a/test/chj-home-expected/--/0161-init-remove-xemacs-setup/0161-init-remove-xemacs-setup-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0161-init-remove-xemacs-setup/0161-init-remove-xemacs-setup-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0161-init-remove-xemacs-setup/0161-init-remove-xemacs-setup-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0161-init-remove-xemacs-setup/0161-init-remove-xemacs-setup-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0161-init-remove-xemacs-setup/_list b/split-patch/test/chj-home-expected/--/0161-init-remove-xemacs-setup/_list similarity index 100% rename from test/chj-home-expected/--/0161-init-remove-xemacs-setup/_list rename to split-patch/test/chj-home-expected/--/0161-init-remove-xemacs-setup/_list diff --git a/test/chj-home-expected/--/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0162-init-clone-chj-emacs-per-user-now/_list b/split-patch/test/chj-home-expected/--/0162-init-clone-chj-emacs-per-user-now/_list similarity index 100% rename from test/chj-home-expected/--/0162-init-clone-chj-emacs-per-user-now/_list rename to split-patch/test/chj-home-expected/--/0162-init-clone-chj-emacs-per-user-now/_list diff --git a/test/chj-home-expected/--/0163-init-actually-do-need-to-import-the-other-key-as-wel/0163-init-actually-do-need-to-import-the-other-key-as-wel-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0163-init-actually-do-need-to-import-the-other-key-as-wel/0163-init-actually-do-need-to-import-the-other-key-as-wel-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0163-init-actually-do-need-to-import-the-other-key-as-wel/0163-init-actually-do-need-to-import-the-other-key-as-wel-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0163-init-actually-do-need-to-import-the-other-key-as-wel/0163-init-actually-do-need-to-import-the-other-key-as-wel-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0163-init-actually-do-need-to-import-the-other-key-as-wel/_list b/split-patch/test/chj-home-expected/--/0163-init-actually-do-need-to-import-the-other-key-as-wel/_list similarity index 100% rename from test/chj-home-expected/--/0163-init-actually-do-need-to-import-the-other-key-as-wel/_list rename to split-patch/test/chj-home-expected/--/0163-init-actually-do-need-to-import-the-other-key-as-wel/_list diff --git a/test/chj-home-expected/--/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/0164-.bash_profile-add-dir-to-newest-clang-to-PATH-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/0164-.bash_profile-add-dir-to-newest-clang-to-PATH-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/0164-.bash_profile-add-dir-to-newest-clang-to-PATH-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/0164-.bash_profile-add-dir-to-newest-clang-to-PATH-.bash_profile.patch diff --git a/test/chj-home-expected/--/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/_list b/split-patch/test/chj-home-expected/--/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/_list similarity index 100% rename from test/chj-home-expected/--/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/_list rename to split-patch/test/chj-home-expected/--/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/_list diff --git a/test/chj-home-expected/--/0165-.bash_profile-increase-history-size-even-more/0165-.bash_profile-increase-history-size-even-more-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0165-.bash_profile-increase-history-size-even-more/0165-.bash_profile-increase-history-size-even-more-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0165-.bash_profile-increase-history-size-even-more/0165-.bash_profile-increase-history-size-even-more-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0165-.bash_profile-increase-history-size-even-more/0165-.bash_profile-increase-history-size-even-more-.bash_profile.patch diff --git a/test/chj-home-expected/--/0165-.bash_profile-increase-history-size-even-more/_list b/split-patch/test/chj-home-expected/--/0165-.bash_profile-increase-history-size-even-more/_list similarity index 100% rename from test/chj-home-expected/--/0165-.bash_profile-increase-history-size-even-more/_list rename to split-patch/test/chj-home-expected/--/0165-.bash_profile-increase-history-size-even-more/_list diff --git a/test/chj-home-expected/--/0166-remove-emacs-geometry/0166-remove-emacs-geometry-.Xresources.patch b/split-patch/test/chj-home-expected/--/0166-remove-emacs-geometry/0166-remove-emacs-geometry-.Xresources.patch similarity index 100% rename from test/chj-home-expected/--/0166-remove-emacs-geometry/0166-remove-emacs-geometry-.Xresources.patch rename to split-patch/test/chj-home-expected/--/0166-remove-emacs-geometry/0166-remove-emacs-geometry-.Xresources.patch diff --git a/test/chj-home-expected/--/0166-remove-emacs-geometry/_list b/split-patch/test/chj-home-expected/--/0166-remove-emacs-geometry/_list similarity index 100% rename from test/chj-home-expected/--/0166-remove-emacs-geometry/_list rename to split-patch/test/chj-home-expected/--/0166-remove-emacs-geometry/_list diff --git a/test/chj-home-expected/--/0167-.bashrc-add-ul/0167-.bashrc-add-ul-.bashrc.patch b/split-patch/test/chj-home-expected/--/0167-.bashrc-add-ul/0167-.bashrc-add-ul-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0167-.bashrc-add-ul/0167-.bashrc-add-ul-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0167-.bashrc-add-ul/0167-.bashrc-add-ul-.bashrc.patch diff --git a/test/chj-home-expected/--/0167-.bashrc-add-ul/_list b/split-patch/test/chj-home-expected/--/0167-.bashrc-add-ul/_list similarity index 100% rename from test/chj-home-expected/--/0167-.bashrc-add-ul/_list rename to split-patch/test/chj-home-expected/--/0167-.bashrc-add-ul/_list diff --git a/test/chj-home-expected/--/0168-Add-.xmodmaprc_laptopkeyboard/0168-Add-.xmodmaprc_laptopkeyboard-.xmodmaprc_laptopkeyboard.patch b/split-patch/test/chj-home-expected/--/0168-Add-.xmodmaprc_laptopkeyboard/0168-Add-.xmodmaprc_laptopkeyboard-.xmodmaprc_laptopkeyboard.patch similarity index 100% rename from test/chj-home-expected/--/0168-Add-.xmodmaprc_laptopkeyboard/0168-Add-.xmodmaprc_laptopkeyboard-.xmodmaprc_laptopkeyboard.patch rename to split-patch/test/chj-home-expected/--/0168-Add-.xmodmaprc_laptopkeyboard/0168-Add-.xmodmaprc_laptopkeyboard-.xmodmaprc_laptopkeyboard.patch diff --git a/test/chj-home-expected/--/0168-Add-.xmodmaprc_laptopkeyboard/_list b/split-patch/test/chj-home-expected/--/0168-Add-.xmodmaprc_laptopkeyboard/_list similarity index 100% rename from test/chj-home-expected/--/0168-Add-.xmodmaprc_laptopkeyboard/_list rename to split-patch/test/chj-home-expected/--/0168-Add-.xmodmaprc_laptopkeyboard/_list diff --git a/test/chj-home-expected/--/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.festivaldays.tsv.patch b/split-patch/test/chj-home-expected/--/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.festivaldays.tsv.patch similarity index 100% rename from test/chj-home-expected/--/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.festivaldays.tsv.patch rename to split-patch/test/chj-home-expected/--/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.festivaldays.tsv.patch diff --git a/test/chj-home-expected/--/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.holidays.tsv.patch b/split-patch/test/chj-home-expected/--/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.holidays.tsv.patch similarity index 100% rename from test/chj-home-expected/--/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.holidays.tsv.patch rename to split-patch/test/chj-home-expected/--/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.holidays.tsv.patch diff --git a/test/chj-home-expected/--/0169-Add-holidays-in-Switzerland/_list b/split-patch/test/chj-home-expected/--/0169-Add-holidays-in-Switzerland/_list similarity index 100% rename from test/chj-home-expected/--/0169-Add-holidays-in-Switzerland/_list rename to split-patch/test/chj-home-expected/--/0169-Add-holidays-in-Switzerland/_list diff --git a/test/chj-home-expected/--/0170-.holidays.tsv-english-Basel/0170-.holidays.tsv-english-Basel-.holidays.tsv.patch b/split-patch/test/chj-home-expected/--/0170-.holidays.tsv-english-Basel/0170-.holidays.tsv-english-Basel-.holidays.tsv.patch similarity index 100% rename from test/chj-home-expected/--/0170-.holidays.tsv-english-Basel/0170-.holidays.tsv-english-Basel-.holidays.tsv.patch rename to split-patch/test/chj-home-expected/--/0170-.holidays.tsv-english-Basel/0170-.holidays.tsv-english-Basel-.holidays.tsv.patch diff --git a/test/chj-home-expected/--/0170-.holidays.tsv-english-Basel/_list b/split-patch/test/chj-home-expected/--/0170-.holidays.tsv-english-Basel/_list similarity index 100% rename from test/chj-home-expected/--/0170-.holidays.tsv-english-Basel/_list rename to split-patch/test/chj-home-expected/--/0170-.holidays.tsv-english-Basel/_list diff --git a/test/chj-home-expected/--/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0171-init-import-gpg-keys-first/_list b/split-patch/test/chj-home-expected/--/0171-init-import-gpg-keys-first/_list similarity index 100% rename from test/chj-home-expected/--/0171-init-import-gpg-keys-first/_list rename to split-patch/test/chj-home-expected/--/0171-init-import-gpg-keys-first/_list diff --git a/test/chj-home-expected/--/0172-init-yes-mod-user-imports-the-keys-already/0172-init-yes-mod-user-imports-the-keys-already-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0172-init-yes-mod-user-imports-the-keys-already/0172-init-yes-mod-user-imports-the-keys-already-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0172-init-yes-mod-user-imports-the-keys-already/0172-init-yes-mod-user-imports-the-keys-already-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0172-init-yes-mod-user-imports-the-keys-already/0172-init-yes-mod-user-imports-the-keys-already-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0172-init-yes-mod-user-imports-the-keys-already/_list b/split-patch/test/chj-home-expected/--/0172-init-yes-mod-user-imports-the-keys-already/_list similarity index 100% rename from test/chj-home-expected/--/0172-init-yes-mod-user-imports-the-keys-already/_list rename to split-patch/test/chj-home-expected/--/0172-init-yes-mod-user-imports-the-keys-already/_list diff --git a/test/chj-home-expected/--/0173-.gitignore_global-ignore-.cache/0173-.gitignore_global-ignore-.cache-.gitignore_global.patch b/split-patch/test/chj-home-expected/--/0173-.gitignore_global-ignore-.cache/0173-.gitignore_global-ignore-.cache-.gitignore_global.patch similarity index 100% rename from test/chj-home-expected/--/0173-.gitignore_global-ignore-.cache/0173-.gitignore_global-ignore-.cache-.gitignore_global.patch rename to split-patch/test/chj-home-expected/--/0173-.gitignore_global-ignore-.cache/0173-.gitignore_global-ignore-.cache-.gitignore_global.patch diff --git a/test/chj-home-expected/--/0173-.gitignore_global-ignore-.cache/_list b/split-patch/test/chj-home-expected/--/0173-.gitignore_global-ignore-.cache/_list similarity index 100% rename from test/chj-home-expected/--/0173-.gitignore_global-ignore-.cache/_list rename to split-patch/test/chj-home-expected/--/0173-.gitignore_global-ignore-.cache/_list diff --git a/test/chj-home-expected/--/0174-Prioritize-my-mt/0174-Prioritize-my-mt-.bashrc.patch b/split-patch/test/chj-home-expected/--/0174-Prioritize-my-mt/0174-Prioritize-my-mt-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0174-Prioritize-my-mt/0174-Prioritize-my-mt-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0174-Prioritize-my-mt/0174-Prioritize-my-mt-.bashrc.patch diff --git a/test/chj-home-expected/--/0174-Prioritize-my-mt/_list b/split-patch/test/chj-home-expected/--/0174-Prioritize-my-mt/_list similarity index 100% rename from test/chj-home-expected/--/0174-Prioritize-my-mt/_list rename to split-patch/test/chj-home-expected/--/0174-Prioritize-my-mt/_list diff --git a/test/chj-home-expected/--/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv.patch b/split-patch/test/chj-home-expected/--/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv.patch similarity index 100% rename from test/chj-home-expected/--/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv.patch rename to split-patch/test/chj-home-expected/--/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv.patch diff --git a/test/chj-home-expected/--/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/_list b/split-patch/test/chj-home-expected/--/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/_list similarity index 100% rename from test/chj-home-expected/--/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/_list rename to split-patch/test/chj-home-expected/--/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/_list diff --git a/test/chj-home-expected/--/0176-.bashrc-add-cdat/0176-.bashrc-add-cdat-.bashrc.patch b/split-patch/test/chj-home-expected/--/0176-.bashrc-add-cdat/0176-.bashrc-add-cdat-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0176-.bashrc-add-cdat/0176-.bashrc-add-cdat-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0176-.bashrc-add-cdat/0176-.bashrc-add-cdat-.bashrc.patch diff --git a/test/chj-home-expected/--/0176-.bashrc-add-cdat/_list b/split-patch/test/chj-home-expected/--/0176-.bashrc-add-cdat/_list similarity index 100% rename from test/chj-home-expected/--/0176-.bashrc-add-cdat/_list rename to split-patch/test/chj-home-expected/--/0176-.bashrc-add-cdat/_list diff --git a/test/chj-home-expected/--/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks-.gitignore_global.patch b/split-patch/test/chj-home-expected/--/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks-.gitignore_global.patch similarity index 100% rename from test/chj-home-expected/--/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks-.gitignore_global.patch rename to split-patch/test/chj-home-expected/--/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks-.gitignore_global.patch diff --git a/test/chj-home-expected/--/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/_list b/split-patch/test/chj-home-expected/--/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/_list similarity index 100% rename from test/chj-home-expected/--/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/_list rename to split-patch/test/chj-home-expected/--/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/_list diff --git a/test/chj-home-expected/--/0178-.bashrc-cdat-pass-arguments-to-dat/0178-.bashrc-cdat-pass-arguments-to-dat-.bashrc.patch b/split-patch/test/chj-home-expected/--/0178-.bashrc-cdat-pass-arguments-to-dat/0178-.bashrc-cdat-pass-arguments-to-dat-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0178-.bashrc-cdat-pass-arguments-to-dat/0178-.bashrc-cdat-pass-arguments-to-dat-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0178-.bashrc-cdat-pass-arguments-to-dat/0178-.bashrc-cdat-pass-arguments-to-dat-.bashrc.patch diff --git a/test/chj-home-expected/--/0178-.bashrc-cdat-pass-arguments-to-dat/_list b/split-patch/test/chj-home-expected/--/0178-.bashrc-cdat-pass-arguments-to-dat/_list similarity index 100% rename from test/chj-home-expected/--/0178-.bashrc-cdat-pass-arguments-to-dat/_list rename to split-patch/test/chj-home-expected/--/0178-.bashrc-cdat-pass-arguments-to-dat/_list diff --git a/test/chj-home-expected/--/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc.patch b/split-patch/test/chj-home-expected/--/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc.patch diff --git a/test/chj-home-expected/--/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/_list b/split-patch/test/chj-home-expected/--/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/_list similarity index 100% rename from test/chj-home-expected/--/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/_list rename to split-patch/test/chj-home-expected/--/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/_list diff --git a/test/chj-home-expected/--/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc.patch b/split-patch/test/chj-home-expected/--/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc.patch diff --git a/test/chj-home-expected/--/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/_list b/split-patch/test/chj-home-expected/--/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/_list similarity index 100% rename from test/chj-home-expected/--/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/_list rename to split-patch/test/chj-home-expected/--/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/_list diff --git a/test/chj-home-expected/--/0181-.bashrc-finally-remove-df-wrapper/0181-.bashrc-finally-remove-df-wrapper-.bashrc.patch b/split-patch/test/chj-home-expected/--/0181-.bashrc-finally-remove-df-wrapper/0181-.bashrc-finally-remove-df-wrapper-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0181-.bashrc-finally-remove-df-wrapper/0181-.bashrc-finally-remove-df-wrapper-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0181-.bashrc-finally-remove-df-wrapper/0181-.bashrc-finally-remove-df-wrapper-.bashrc.patch diff --git a/test/chj-home-expected/--/0181-.bashrc-finally-remove-df-wrapper/_list b/split-patch/test/chj-home-expected/--/0181-.bashrc-finally-remove-df-wrapper/_list similarity index 100% rename from test/chj-home-expected/--/0181-.bashrc-finally-remove-df-wrapper/_list rename to split-patch/test/chj-home-expected/--/0181-.bashrc-finally-remove-df-wrapper/_list diff --git a/test/chj-home-expected/--/0182-.chj-home-init-follow-BROWSER-env-var-protocol/0182-.chj-home-init-follow-BROWSER-env-var-protocol-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0182-.chj-home-init-follow-BROWSER-env-var-protocol/0182-.chj-home-init-follow-BROWSER-env-var-protocol-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0182-.chj-home-init-follow-BROWSER-env-var-protocol/0182-.chj-home-init-follow-BROWSER-env-var-protocol-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0182-.chj-home-init-follow-BROWSER-env-var-protocol/0182-.chj-home-init-follow-BROWSER-env-var-protocol-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0182-.chj-home-init-follow-BROWSER-env-var-protocol/_list b/split-patch/test/chj-home-expected/--/0182-.chj-home-init-follow-BROWSER-env-var-protocol/_list similarity index 100% rename from test/chj-home-expected/--/0182-.chj-home-init-follow-BROWSER-env-var-protocol/_list rename to split-patch/test/chj-home-expected/--/0182-.chj-home-init-follow-BROWSER-env-var-protocol/_list diff --git a/test/chj-home-expected/--/0183-.chj-home-init-use-ew-as-editor/0183-.chj-home-init-use-ew-as-editor-.chj-home_init.patch b/split-patch/test/chj-home-expected/--/0183-.chj-home-init-use-ew-as-editor/0183-.chj-home-init-use-ew-as-editor-.chj-home_init.patch similarity index 100% rename from test/chj-home-expected/--/0183-.chj-home-init-use-ew-as-editor/0183-.chj-home-init-use-ew-as-editor-.chj-home_init.patch rename to split-patch/test/chj-home-expected/--/0183-.chj-home-init-use-ew-as-editor/0183-.chj-home-init-use-ew-as-editor-.chj-home_init.patch diff --git a/test/chj-home-expected/--/0183-.chj-home-init-use-ew-as-editor/_list b/split-patch/test/chj-home-expected/--/0183-.chj-home-init-use-ew-as-editor/_list similarity index 100% rename from test/chj-home-expected/--/0183-.chj-home-init-use-ew-as-editor/_list rename to split-patch/test/chj-home-expected/--/0183-.chj-home-init-use-ew-as-editor/_list diff --git a/test/chj-home-expected/--/0184-.bashrc-add-cdgit/0184-.bashrc-add-cdgit-.bashrc.patch b/split-patch/test/chj-home-expected/--/0184-.bashrc-add-cdgit/0184-.bashrc-add-cdgit-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0184-.bashrc-add-cdgit/0184-.bashrc-add-cdgit-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0184-.bashrc-add-cdgit/0184-.bashrc-add-cdgit-.bashrc.patch diff --git a/test/chj-home-expected/--/0184-.bashrc-add-cdgit/_list b/split-patch/test/chj-home-expected/--/0184-.bashrc-add-cdgit/_list similarity index 100% rename from test/chj-home-expected/--/0184-.bashrc-add-cdgit/_list rename to split-patch/test/chj-home-expected/--/0184-.bashrc-add-cdgit/_list diff --git a/test/chj-home-expected/--/0185-.bash_profile-need-to-set-umask-now/0185-.bash_profile-need-to-set-umask-now-.bash_profile.patch b/split-patch/test/chj-home-expected/--/0185-.bash_profile-need-to-set-umask-now/0185-.bash_profile-need-to-set-umask-now-.bash_profile.patch similarity index 100% rename from test/chj-home-expected/--/0185-.bash_profile-need-to-set-umask-now/0185-.bash_profile-need-to-set-umask-now-.bash_profile.patch rename to split-patch/test/chj-home-expected/--/0185-.bash_profile-need-to-set-umask-now/0185-.bash_profile-need-to-set-umask-now-.bash_profile.patch diff --git a/test/chj-home-expected/--/0185-.bash_profile-need-to-set-umask-now/_list b/split-patch/test/chj-home-expected/--/0185-.bash_profile-need-to-set-umask-now/_list similarity index 100% rename from test/chj-home-expected/--/0185-.bash_profile-need-to-set-umask-now/_list rename to split-patch/test/chj-home-expected/--/0185-.bash_profile-need-to-set-umask-now/_list diff --git a/test/chj-home-expected/--/0186-.gitignore_global-ignore-.cj-cargolock/0186-.gitignore_global-ignore-.cj-cargolock-.gitignore_global.patch b/split-patch/test/chj-home-expected/--/0186-.gitignore_global-ignore-.cj-cargolock/0186-.gitignore_global-ignore-.cj-cargolock-.gitignore_global.patch similarity index 100% rename from test/chj-home-expected/--/0186-.gitignore_global-ignore-.cj-cargolock/0186-.gitignore_global-ignore-.cj-cargolock-.gitignore_global.patch rename to split-patch/test/chj-home-expected/--/0186-.gitignore_global-ignore-.cj-cargolock/0186-.gitignore_global-ignore-.cj-cargolock-.gitignore_global.patch diff --git a/test/chj-home-expected/--/0186-.gitignore_global-ignore-.cj-cargolock/_list b/split-patch/test/chj-home-expected/--/0186-.gitignore_global-ignore-.cj-cargolock/_list similarity index 100% rename from test/chj-home-expected/--/0186-.gitignore_global-ignore-.cj-cargolock/_list rename to split-patch/test/chj-home-expected/--/0186-.gitignore_global-ignore-.cj-cargolock/_list diff --git a/test/chj-home-expected/--/0187-.gitignore_global-ignore-__pycache__/0187-.gitignore_global-ignore-__pycache__-.gitignore_global.patch b/split-patch/test/chj-home-expected/--/0187-.gitignore_global-ignore-__pycache__/0187-.gitignore_global-ignore-__pycache__-.gitignore_global.patch similarity index 100% rename from test/chj-home-expected/--/0187-.gitignore_global-ignore-__pycache__/0187-.gitignore_global-ignore-__pycache__-.gitignore_global.patch rename to split-patch/test/chj-home-expected/--/0187-.gitignore_global-ignore-__pycache__/0187-.gitignore_global-ignore-__pycache__-.gitignore_global.patch diff --git a/test/chj-home-expected/--/0187-.gitignore_global-ignore-__pycache__/_list b/split-patch/test/chj-home-expected/--/0187-.gitignore_global-ignore-__pycache__/_list similarity index 100% rename from test/chj-home-expected/--/0187-.gitignore_global-ignore-__pycache__/_list rename to split-patch/test/chj-home-expected/--/0187-.gitignore_global-ignore-__pycache__/_list diff --git a/test/chj-home-expected/--/0188-.bashrc-add-cdnnnn-and-cdnnnnn/0188-.bashrc-add-cdnnnn-and-cdnnnnn-.bashrc.patch b/split-patch/test/chj-home-expected/--/0188-.bashrc-add-cdnnnn-and-cdnnnnn/0188-.bashrc-add-cdnnnn-and-cdnnnnn-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0188-.bashrc-add-cdnnnn-and-cdnnnnn/0188-.bashrc-add-cdnnnn-and-cdnnnnn-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0188-.bashrc-add-cdnnnn-and-cdnnnnn/0188-.bashrc-add-cdnnnn-and-cdnnnnn-.bashrc.patch diff --git a/test/chj-home-expected/--/0188-.bashrc-add-cdnnnn-and-cdnnnnn/_list b/split-patch/test/chj-home-expected/--/0188-.bashrc-add-cdnnnn-and-cdnnnnn/_list similarity index 100% rename from test/chj-home-expected/--/0188-.bashrc-add-cdnnnn-and-cdnnnnn/_list rename to split-patch/test/chj-home-expected/--/0188-.bashrc-add-cdnnnn-and-cdnnnnn/_list diff --git a/test/chj-home-expected/--/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn-.bashrc.patch b/split-patch/test/chj-home-expected/--/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn-.bashrc.patch diff --git a/test/chj-home-expected/--/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/_list b/split-patch/test/chj-home-expected/--/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/_list similarity index 100% rename from test/chj-home-expected/--/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/_list rename to split-patch/test/chj-home-expected/--/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/_list diff --git a/test/chj-home-expected/--/0190-.bashrc-update-color-detection/0190-.bashrc-update-color-detection-.bashrc.patch b/split-patch/test/chj-home-expected/--/0190-.bashrc-update-color-detection/0190-.bashrc-update-color-detection-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0190-.bashrc-update-color-detection/0190-.bashrc-update-color-detection-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0190-.bashrc-update-color-detection/0190-.bashrc-update-color-detection-.bashrc.patch diff --git a/test/chj-home-expected/--/0190-.bashrc-update-color-detection/_list b/split-patch/test/chj-home-expected/--/0190-.bashrc-update-color-detection/_list similarity index 100% rename from test/chj-home-expected/--/0190-.bashrc-update-color-detection/_list rename to split-patch/test/chj-home-expected/--/0190-.bashrc-update-color-detection/_list diff --git a/test/chj-home-expected/--/0191-.bashrc-add-lft/0191-.bashrc-add-lft-.bashrc.patch b/split-patch/test/chj-home-expected/--/0191-.bashrc-add-lft/0191-.bashrc-add-lft-.bashrc.patch similarity index 100% rename from test/chj-home-expected/--/0191-.bashrc-add-lft/0191-.bashrc-add-lft-.bashrc.patch rename to split-patch/test/chj-home-expected/--/0191-.bashrc-add-lft/0191-.bashrc-add-lft-.bashrc.patch diff --git a/test/chj-home-expected/--/0191-.bashrc-add-lft/_list b/split-patch/test/chj-home-expected/--/0191-.bashrc-add-lft/_list similarity index 100% rename from test/chj-home-expected/--/0191-.bashrc-add-lft/_list rename to split-patch/test/chj-home-expected/--/0191-.bashrc-add-lft/_list diff --git a/test/chj-home-expected/--changes/0001-move-lt-to-chj-bin/0001-move-lt-to-chj-bin-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0001-move-lt-to-chj-bin/0001-move-lt-to-chj-bin-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0001-move-lt-to-chj-bin/0001-move-lt-to-chj-bin-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0001-move-lt-to-chj-bin/0001-move-lt-to-chj-bin-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0001-move-lt-to-chj-bin/_list b/split-patch/test/chj-home-expected/--changes/0001-move-lt-to-chj-bin/_list similarity index 100% rename from test/chj-home-expected/--changes/0001-move-lt-to-chj-bin/_list rename to split-patch/test/chj-home-expected/--changes/0001-move-lt-to-chj-bin/_list diff --git a/test/chj-home-expected/--changes/0002-ignore-.xhtml/0002-ignore-.xhtml-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--changes/0002-ignore-.xhtml/0002-ignore-.xhtml-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0002-ignore-.xhtml/0002-ignore-.xhtml-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--changes/0002-ignore-.xhtml/0002-ignore-.xhtml-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--changes/0002-ignore-.xhtml/_list b/split-patch/test/chj-home-expected/--changes/0002-ignore-.xhtml/_list similarity index 100% rename from test/chj-home-expected/--changes/0002-ignore-.xhtml/_list rename to split-patch/test/chj-home-expected/--changes/0002-ignore-.xhtml/_list diff --git a/test/chj-home-expected/--changes/0003-ignore-nohup.out/0003-ignore-nohup.out-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--changes/0003-ignore-nohup.out/0003-ignore-nohup.out-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0003-ignore-nohup.out/0003-ignore-nohup.out-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--changes/0003-ignore-nohup.out/0003-ignore-nohup.out-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--changes/0003-ignore-nohup.out/_list b/split-patch/test/chj-home-expected/--changes/0003-ignore-nohup.out/_list similarity index 100% rename from test/chj-home-expected/--changes/0003-ignore-nohup.out/_list rename to split-patch/test/chj-home-expected/--changes/0003-ignore-nohup.out/_list diff --git a/test/chj-home-expected/--changes/0004-git-wanted-this/0004-git-wanted-this-.gitconfig-000.patch b/split-patch/test/chj-home-expected/--changes/0004-git-wanted-this/0004-git-wanted-this-.gitconfig-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0004-git-wanted-this/0004-git-wanted-this-.gitconfig-000.patch rename to split-patch/test/chj-home-expected/--changes/0004-git-wanted-this/0004-git-wanted-this-.gitconfig-000.patch diff --git a/test/chj-home-expected/--changes/0004-git-wanted-this/_list b/split-patch/test/chj-home-expected/--changes/0004-git-wanted-this/_list similarity index 100% rename from test/chj-home-expected/--changes/0004-git-wanted-this/_list rename to split-patch/test/chj-home-expected/--changes/0004-git-wanted-this/_list diff --git a/test/chj-home-expected/--changes/0005-ignore-.markdownmake.lck/0005-ignore-.markdownmake.lck-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--changes/0005-ignore-.markdownmake.lck/0005-ignore-.markdownmake.lck-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0005-ignore-.markdownmake.lck/0005-ignore-.markdownmake.lck-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--changes/0005-ignore-.markdownmake.lck/0005-ignore-.markdownmake.lck-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--changes/0005-ignore-.markdownmake.lck/_list b/split-patch/test/chj-home-expected/--changes/0005-ignore-.markdownmake.lck/_list similarity index 100% rename from test/chj-home-expected/--changes/0005-ignore-.markdownmake.lck/_list rename to split-patch/test/chj-home-expected/--changes/0005-ignore-.markdownmake.lck/_list diff --git a/test/chj-home-expected/--changes/0006-UK-locale/0006-UK-locale-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0006-UK-locale/0006-UK-locale-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0006-UK-locale/0006-UK-locale-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0006-UK-locale/0006-UK-locale-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0006-UK-locale/_list b/split-patch/test/chj-home-expected/--changes/0006-UK-locale/_list similarity index 100% rename from test/chj-home-expected/--changes/0006-UK-locale/_list rename to split-patch/test/chj-home-expected/--changes/0006-UK-locale/_list diff --git a/test/chj-home-expected/--changes/0007-obsolete/0007-obsolete-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0007-obsolete/0007-obsolete-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0007-obsolete/0007-obsolete-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0007-obsolete/0007-obsolete-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0007-obsolete/_list b/split-patch/test/chj-home-expected/--changes/0007-obsolete/_list similarity index 100% rename from test/chj-home-expected/--changes/0007-obsolete/_list rename to split-patch/test/chj-home-expected/--changes/0007-obsolete/_list diff --git a/test/chj-home-expected/--changes/0008-make-windows-key-Alt_L/0008-make-windows-key-Alt_L-.xmodmaprc-000.patch b/split-patch/test/chj-home-expected/--changes/0008-make-windows-key-Alt_L/0008-make-windows-key-Alt_L-.xmodmaprc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0008-make-windows-key-Alt_L/0008-make-windows-key-Alt_L-.xmodmaprc-000.patch rename to split-patch/test/chj-home-expected/--changes/0008-make-windows-key-Alt_L/0008-make-windows-key-Alt_L-.xmodmaprc-000.patch diff --git a/test/chj-home-expected/--changes/0008-make-windows-key-Alt_L/_list b/split-patch/test/chj-home-expected/--changes/0008-make-windows-key-Alt_L/_list similarity index 100% rename from test/chj-home-expected/--changes/0008-make-windows-key-Alt_L/_list rename to split-patch/test/chj-home-expected/--changes/0008-make-windows-key-Alt_L/_list diff --git a/test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-000.patch b/split-patch/test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-000.patch diff --git a/test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-001.patch b/split-patch/test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-001.patch rename to split-patch/test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-001.patch diff --git a/test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-002.patch b/split-patch/test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-002.patch rename to split-patch/test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-002.patch diff --git a/test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/_list b/split-patch/test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/_list similarity index 100% rename from test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/_list rename to split-patch/test/chj-home-expected/--changes/0009-update-emacs-geometry-remove-ancient-entries/_list diff --git a/test/chj-home-expected/--changes/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources-000.patch b/split-patch/test/chj-home-expected/--changes/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--changes/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources-000.patch diff --git a/test/chj-home-expected/--changes/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources-001.patch b/split-patch/test/chj-home-expected/--changes/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources-001.patch rename to split-patch/test/chj-home-expected/--changes/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources-001.patch diff --git a/test/chj-home-expected/--changes/0010-remove-more-ancient-entries/_list b/split-patch/test/chj-home-expected/--changes/0010-remove-more-ancient-entries/_list similarity index 100% rename from test/chj-home-expected/--changes/0010-remove-more-ancient-entries/_list rename to split-patch/test/chj-home-expected/--changes/0010-remove-more-ancient-entries/_list diff --git a/test/chj-home-expected/--changes/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources-000.patch b/split-patch/test/chj-home-expected/--changes/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--changes/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources-000.patch diff --git a/test/chj-home-expected/--changes/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources-001.patch b/split-patch/test/chj-home-expected/--changes/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources-001.patch rename to split-patch/test/chj-home-expected/--changes/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources-001.patch diff --git a/test/chj-home-expected/--changes/0011-remove-more-old-entries-apparently-unused/_list b/split-patch/test/chj-home-expected/--changes/0011-remove-more-old-entries-apparently-unused/_list similarity index 100% rename from test/chj-home-expected/--changes/0011-remove-more-old-entries-apparently-unused/_list rename to split-patch/test/chj-home-expected/--changes/0011-remove-more-old-entries-apparently-unused/_list diff --git a/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-002.patch b/split-patch/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-002.patch diff --git a/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-003.patch b/split-patch/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-003.patch rename to split-patch/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-003.patch diff --git a/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-004.patch b/split-patch/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-004.patch similarity index 100% rename from test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-004.patch rename to split-patch/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-004.patch diff --git a/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-005.patch b/split-patch/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-005.patch similarity index 100% rename from test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-005.patch rename to split-patch/test/chj-home-expected/--changes/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-005.patch diff --git a/test/chj-home-expected/--changes/0012-don-t-use-aliases/_list b/split-patch/test/chj-home-expected/--changes/0012-don-t-use-aliases/_list similarity index 100% rename from test/chj-home-expected/--changes/0012-don-t-use-aliases/_list rename to split-patch/test/chj-home-expected/--changes/0012-don-t-use-aliases/_list diff --git a/test/chj-home-expected/--changes/0013-cleanup/0013-cleanup-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0013-cleanup/0013-cleanup-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0013-cleanup/0013-cleanup-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0013-cleanup/0013-cleanup-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0013-cleanup/_list b/split-patch/test/chj-home-expected/--changes/0013-cleanup/_list similarity index 100% rename from test/chj-home-expected/--changes/0013-cleanup/_list rename to split-patch/test/chj-home-expected/--changes/0013-cleanup/_list diff --git a/test/chj-home-expected/--changes/0014-cleanup/0014-cleanup-.xmodmaprc_off-000.patch b/split-patch/test/chj-home-expected/--changes/0014-cleanup/0014-cleanup-.xmodmaprc_off-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0014-cleanup/0014-cleanup-.xmodmaprc_off-000.patch rename to split-patch/test/chj-home-expected/--changes/0014-cleanup/0014-cleanup-.xmodmaprc_off-000.patch diff --git a/test/chj-home-expected/--changes/0014-cleanup/_list b/split-patch/test/chj-home-expected/--changes/0014-cleanup/_list similarity index 100% rename from test/chj-home-expected/--changes/0014-cleanup/_list rename to split-patch/test/chj-home-expected/--changes/0014-cleanup/_list diff --git a/test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d-000.patch b/split-patch/test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d-000.patch rename to split-patch/test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d-000.patch diff --git a/test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode-tests.el-000.patch b/split-patch/test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode-tests.el-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode-tests.el-000.patch rename to split-patch/test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode-tests.el-000.patch diff --git a/test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode.el-000.patch b/split-patch/test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode.el-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode.el-000.patch rename to split-patch/test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode.el-000.patch diff --git a/test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/_list b/split-patch/test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/_list similarity index 100% rename from test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/_list rename to split-patch/test/chj-home-expected/--changes/0015-use-.emacs.d-from-chj-emacs/_list diff --git a/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs-000.patch b/split-patch/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs-000.patch rename to split-patch/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs-000.patch diff --git a/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.d-000.patch b/split-patch/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.d-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.d-000.patch rename to split-patch/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.d-000.patch diff --git a/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.xemacs_init.el-000.patch b/split-patch/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.xemacs_init.el-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.xemacs_init.el-000.patch rename to split-patch/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.xemacs_init.el-000.patch diff --git a/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-home-init-000.patch b/split-patch/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-home-init-000.patch rename to split-patch/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-home-init-000.patch diff --git a/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/_list b/split-patch/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/_list similarity index 100% rename from test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/_list rename to split-patch/test/chj-home-expected/--changes/0016-replace-external-symlinks-with-a-script/_list diff --git a/test/chj-home-expected/--changes/0017-home-init-run-lesskey/0017-home-init-run-lesskey-home-init-000.patch b/split-patch/test/chj-home-expected/--changes/0017-home-init-run-lesskey/0017-home-init-run-lesskey-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0017-home-init-run-lesskey/0017-home-init-run-lesskey-home-init-000.patch rename to split-patch/test/chj-home-expected/--changes/0017-home-init-run-lesskey/0017-home-init-run-lesskey-home-init-000.patch diff --git a/test/chj-home-expected/--changes/0017-home-init-run-lesskey/_list b/split-patch/test/chj-home-expected/--changes/0017-home-init-run-lesskey/_list similarity index 100% rename from test/chj-home-expected/--changes/0017-home-init-run-lesskey/_list rename to split-patch/test/chj-home-expected/--changes/0017-home-init-run-lesskey/_list diff --git a/test/chj-home-expected/--changes/0018-fix-don-t-use-aliases/0018-fix-don-t-use-aliases-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0018-fix-don-t-use-aliases/0018-fix-don-t-use-aliases-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0018-fix-don-t-use-aliases/0018-fix-don-t-use-aliases-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0018-fix-don-t-use-aliases/0018-fix-don-t-use-aliases-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0018-fix-don-t-use-aliases/_list b/split-patch/test/chj-home-expected/--changes/0018-fix-don-t-use-aliases/_list similarity index 100% rename from test/chj-home-expected/--changes/0018-fix-don-t-use-aliases/_list rename to split-patch/test/chj-home-expected/--changes/0018-fix-don-t-use-aliases/_list diff --git a/test/chj-home-expected/--changes/0019-home-init-fixes/0019-home-init-fixes-home-init-000.patch b/split-patch/test/chj-home-expected/--changes/0019-home-init-fixes/0019-home-init-fixes-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0019-home-init-fixes/0019-home-init-fixes-home-init-000.patch rename to split-patch/test/chj-home-expected/--changes/0019-home-init-fixes/0019-home-init-fixes-home-init-000.patch diff --git a/test/chj-home-expected/--changes/0019-home-init-fixes/0019-home-init-fixes-home-init-001.patch b/split-patch/test/chj-home-expected/--changes/0019-home-init-fixes/0019-home-init-fixes-home-init-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0019-home-init-fixes/0019-home-init-fixes-home-init-001.patch rename to split-patch/test/chj-home-expected/--changes/0019-home-init-fixes/0019-home-init-fixes-home-init-001.patch diff --git a/test/chj-home-expected/--changes/0019-home-init-fixes/_list b/split-patch/test/chj-home-expected/--changes/0019-home-init-fixes/_list similarity index 100% rename from test/chj-home-expected/--changes/0019-home-init-fixes/_list rename to split-patch/test/chj-home-expected/--changes/0019-home-init-fixes/_list diff --git a/test/chj-home-expected/--changes/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile-001.patch b/split-patch/test/chj-home-expected/--changes/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile-001.patch rename to split-patch/test/chj-home-expected/--changes/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile-001.patch diff --git a/test/chj-home-expected/--changes/0020-clean-up-PATH/_list b/split-patch/test/chj-home-expected/--changes/0020-clean-up-PATH/_list similarity index 100% rename from test/chj-home-expected/--changes/0020-clean-up-PATH/_list rename to split-patch/test/chj-home-expected/--changes/0020-clean-up-PATH/_list diff --git a/test/chj-home-expected/--changes/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-001.patch b/split-patch/test/chj-home-expected/--changes/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-001.patch rename to split-patch/test/chj-home-expected/--changes/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-001.patch diff --git a/test/chj-home-expected/--changes/0021-load-.bashrc-last/_list b/split-patch/test/chj-home-expected/--changes/0021-load-.bashrc-last/_list similarity index 100% rename from test/chj-home-expected/--changes/0021-load-.bashrc-last/_list rename to split-patch/test/chj-home-expected/--changes/0021-load-.bashrc-last/_list diff --git a/test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-001.patch b/split-patch/test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-001.patch rename to split-patch/test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-001.patch diff --git a/test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-002.patch b/split-patch/test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-002.patch rename to split-patch/test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-002.patch diff --git a/test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-003.patch b/split-patch/test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-003.patch rename to split-patch/test/chj-home-expected/--changes/0022-better-grouping/0022-better-grouping-.bash_profile-003.patch diff --git a/test/chj-home-expected/--changes/0022-better-grouping/_list b/split-patch/test/chj-home-expected/--changes/0022-better-grouping/_list similarity index 100% rename from test/chj-home-expected/--changes/0022-better-grouping/_list rename to split-patch/test/chj-home-expected/--changes/0022-better-grouping/_list diff --git a/test/chj-home-expected/--changes/0023-remove-duplicate/0023-remove-duplicate-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0023-remove-duplicate/0023-remove-duplicate-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0023-remove-duplicate/0023-remove-duplicate-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0023-remove-duplicate/0023-remove-duplicate-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0023-remove-duplicate/_list b/split-patch/test/chj-home-expected/--changes/0023-remove-duplicate/_list similarity index 100% rename from test/chj-home-expected/--changes/0023-remove-duplicate/_list rename to split-patch/test/chj-home-expected/--changes/0023-remove-duplicate/_list diff --git a/test/chj-home-expected/--changes/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0024-move-to-.bash_profile/_list b/split-patch/test/chj-home-expected/--changes/0024-move-to-.bash_profile/_list similarity index 100% rename from test/chj-home-expected/--changes/0024-move-to-.bash_profile/_list rename to split-patch/test/chj-home-expected/--changes/0024-move-to-.bash_profile/_list diff --git a/test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/_list b/split-patch/test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/_list similarity index 100% rename from test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/_list rename to split-patch/test/chj-home-expected/--changes/0025-more-move-to-.bash_profile-incl.-HISTSIZE/_list diff --git a/test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-002.patch b/split-patch/test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-002.patch diff --git a/test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-003.patch b/split-patch/test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-003.patch rename to split-patch/test/chj-home-expected/--changes/0026-cleanup/0026-cleanup-.bashrc-003.patch diff --git a/test/chj-home-expected/--changes/0026-cleanup/_list b/split-patch/test/chj-home-expected/--changes/0026-cleanup/_list similarity index 100% rename from test/chj-home-expected/--changes/0026-cleanup/_list rename to split-patch/test/chj-home-expected/--changes/0026-cleanup/_list diff --git a/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-001.patch b/split-patch/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-001.patch rename to split-patch/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-001.patch diff --git a/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-002.patch b/split-patch/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-002.patch rename to split-patch/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-002.patch diff --git a/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-003.patch b/split-patch/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-003.patch rename to split-patch/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-003.patch diff --git a/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/_list b/split-patch/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/_list similarity index 100% rename from test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/_list rename to split-patch/test/chj-home-expected/--changes/0027-more-move-to-.bash_profile-beautify/_list diff --git a/test/chj-home-expected/--changes/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile-001.patch b/split-patch/test/chj-home-expected/--changes/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile-001.patch rename to split-patch/test/chj-home-expected/--changes/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile-001.patch diff --git a/test/chj-home-expected/--changes/0028-source-.bash_profile_local/_list b/split-patch/test/chj-home-expected/--changes/0028-source-.bash_profile_local/_list similarity index 100% rename from test/chj-home-expected/--changes/0028-source-.bash_profile_local/_list rename to split-patch/test/chj-home-expected/--changes/0028-source-.bash_profile_local/_list diff --git a/test/chj-home-expected/--changes/0029-source-.bashrc_local/0029-source-.bashrc_local-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0029-source-.bashrc_local/0029-source-.bashrc_local-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0029-source-.bashrc_local/0029-source-.bashrc_local-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0029-source-.bashrc_local/0029-source-.bashrc_local-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0029-source-.bashrc_local/_list b/split-patch/test/chj-home-expected/--changes/0029-source-.bashrc_local/_list similarity index 100% rename from test/chj-home-expected/--changes/0029-source-.bashrc_local/_list rename to split-patch/test/chj-home-expected/--changes/0029-source-.bashrc_local/_list diff --git a/test/chj-home-expected/--changes/0030-remove-entries-that-can-be-moved-to-.bashrc_local/0030-remove-entries-that-can-be-moved-to-.bashrc_local-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0030-remove-entries-that-can-be-moved-to-.bashrc_local/0030-remove-entries-that-can-be-moved-to-.bashrc_local-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0030-remove-entries-that-can-be-moved-to-.bashrc_local/0030-remove-entries-that-can-be-moved-to-.bashrc_local-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0030-remove-entries-that-can-be-moved-to-.bashrc_local/0030-remove-entries-that-can-be-moved-to-.bashrc_local-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0030-remove-entries-that-can-be-moved-to-.bashrc_local/_list b/split-patch/test/chj-home-expected/--changes/0030-remove-entries-that-can-be-moved-to-.bashrc_local/_list similarity index 100% rename from test/chj-home-expected/--changes/0030-remove-entries-that-can-be-moved-to-.bashrc_local/_list rename to split-patch/test/chj-home-expected/--changes/0030-remove-entries-that-can-be-moved-to-.bashrc_local/_list diff --git a/test/chj-home-expected/--changes/0031-remove-ALSARECDEV/0031-remove-ALSARECDEV-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0031-remove-ALSARECDEV/0031-remove-ALSARECDEV-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0031-remove-ALSARECDEV/0031-remove-ALSARECDEV-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0031-remove-ALSARECDEV/0031-remove-ALSARECDEV-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0031-remove-ALSARECDEV/_list b/split-patch/test/chj-home-expected/--changes/0031-remove-ALSARECDEV/_list similarity index 100% rename from test/chj-home-expected/--changes/0031-remove-ALSARECDEV/_list rename to split-patch/test/chj-home-expected/--changes/0031-remove-ALSARECDEV/_list diff --git a/test/chj-home-expected/--changes/0032-add-note-about-overridability-of-ulimit-S/0032-add-note-about-overridability-of-ulimit-S-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0032-add-note-about-overridability-of-ulimit-S/0032-add-note-about-overridability-of-ulimit-S-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0032-add-note-about-overridability-of-ulimit-S/0032-add-note-about-overridability-of-ulimit-S-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0032-add-note-about-overridability-of-ulimit-S/0032-add-note-about-overridability-of-ulimit-S-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0032-add-note-about-overridability-of-ulimit-S/_list b/split-patch/test/chj-home-expected/--changes/0032-add-note-about-overridability-of-ulimit-S/_list similarity index 100% rename from test/chj-home-expected/--changes/0032-add-note-about-overridability-of-ulimit-S/_list rename to split-patch/test/chj-home-expected/--changes/0032-add-note-about-overridability-of-ulimit-S/_list diff --git a/test/chj-home-expected/--changes/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/0033-home-init-do-the-remaining-tasks-that-chrisclone-did-home-init-000.patch b/split-patch/test/chj-home-expected/--changes/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/0033-home-init-do-the-remaining-tasks-that-chrisclone-did-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/0033-home-init-do-the-remaining-tasks-that-chrisclone-did-home-init-000.patch rename to split-patch/test/chj-home-expected/--changes/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/0033-home-init-do-the-remaining-tasks-that-chrisclone-did-home-init-000.patch diff --git a/test/chj-home-expected/--changes/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/_list b/split-patch/test/chj-home-expected/--changes/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/_list similarity index 100% rename from test/chj-home-expected/--changes/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/_list rename to split-patch/test/chj-home-expected/--changes/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/_list diff --git a/test/chj-home-expected/--changes/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init-000.patch b/split-patch/test/chj-home-expected/--changes/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init-000.patch rename to split-patch/test/chj-home-expected/--changes/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init-000.patch diff --git a/test/chj-home-expected/--changes/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init-001.patch b/split-patch/test/chj-home-expected/--changes/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init-001.patch rename to split-patch/test/chj-home-expected/--changes/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init-001.patch diff --git a/test/chj-home-expected/--changes/0034-home-init-allow-to-run-from-different-working-direct/_list b/split-patch/test/chj-home-expected/--changes/0034-home-init-allow-to-run-from-different-working-direct/_list similarity index 100% rename from test/chj-home-expected/--changes/0034-home-init-allow-to-run-from-different-working-direct/_list rename to split-patch/test/chj-home-expected/--changes/0034-home-init-allow-to-run-from-different-working-direct/_list diff --git a/test/chj-home-expected/--changes/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0035-more-fix-don-t-use-aliases/_list b/split-patch/test/chj-home-expected/--changes/0035-more-fix-don-t-use-aliases/_list similarity index 100% rename from test/chj-home-expected/--changes/0035-more-fix-don-t-use-aliases/_list rename to split-patch/test/chj-home-expected/--changes/0035-more-fix-don-t-use-aliases/_list diff --git a/test/chj-home-expected/--changes/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc-000.patch b/split-patch/test/chj-home-expected/--changes/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc-000.patch diff --git a/test/chj-home-expected/--changes/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc-001.patch b/split-patch/test/chj-home-expected/--changes/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc-001.patch diff --git a/test/chj-home-expected/--changes/0036-.inputrc-cleanup/_list b/split-patch/test/chj-home-expected/--changes/0036-.inputrc-cleanup/_list similarity index 100% rename from test/chj-home-expected/--changes/0036-.inputrc-cleanup/_list rename to split-patch/test/chj-home-expected/--changes/0036-.inputrc-cleanup/_list diff --git a/test/chj-home-expected/--changes/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0037-merge-root-s-home-s-features/_list b/split-patch/test/chj-home-expected/--changes/0037-merge-root-s-home-s-features/_list similarity index 100% rename from test/chj-home-expected/--changes/0037-merge-root-s-home-s-features/_list rename to split-patch/test/chj-home-expected/--changes/0037-merge-root-s-home-s-features/_list diff --git a/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-000.patch b/split-patch/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-000.patch rename to split-patch/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-000.patch diff --git a/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-001.patch b/split-patch/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-001.patch rename to split-patch/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-001.patch diff --git a/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-002.patch b/split-patch/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-002.patch rename to split-patch/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-002.patch diff --git a/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-003.patch b/split-patch/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-003.patch rename to split-patch/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-003.patch diff --git a/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-004.patch b/split-patch/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-004.patch similarity index 100% rename from test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-004.patch rename to split-patch/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-004.patch diff --git a/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/_list b/split-patch/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/_list similarity index 100% rename from test/chj-home-expected/--changes/0038-.gitconfig-cleanup/_list rename to split-patch/test/chj-home-expected/--changes/0038-.gitconfig-cleanup/_list diff --git a/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile-001.patch b/split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile-001.patch rename to split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile-001.patch diff --git a/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.gitconfig-000.patch b/split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.gitconfig-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.gitconfig-000.patch rename to split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.gitconfig-000.patch diff --git a/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-000.patch b/split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-000.patch rename to split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-000.patch diff --git a/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-001.patch b/split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-001.patch rename to split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-001.patch diff --git a/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-002.patch b/split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-002.patch rename to split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-002.patch diff --git a/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-003.patch b/split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-003.patch rename to split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-003.patch diff --git a/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-004.patch b/split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-004.patch similarity index 100% rename from test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-004.patch rename to split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-004.patch diff --git a/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/_list b/split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/_list similarity index 100% rename from test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/_list rename to split-patch/test/chj-home-expected/--changes/0039-ask-user-specific-info-from-home-init-generate-files/_list diff --git a/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-002.patch b/split-patch/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-002.patch diff --git a/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-003.patch b/split-patch/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-003.patch rename to split-patch/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-003.patch diff --git a/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-004.patch b/split-patch/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-004.patch similarity index 100% rename from test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-004.patch rename to split-patch/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-004.patch diff --git a/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/_list b/split-patch/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/_list similarity index 100% rename from test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/_list rename to split-patch/test/chj-home-expected/--changes/0040-.bashrc-return-false-for-failing-commands/_list diff --git a/test/chj-home-expected/--changes/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-000.patch b/split-patch/test/chj-home-expected/--changes/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-000.patch rename to split-patch/test/chj-home-expected/--changes/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-000.patch diff --git a/test/chj-home-expected/--changes/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-001.patch b/split-patch/test/chj-home-expected/--changes/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-001.patch rename to split-patch/test/chj-home-expected/--changes/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-001.patch diff --git a/test/chj-home-expected/--changes/0041-home-init-only-run-once/_list b/split-patch/test/chj-home-expected/--changes/0041-home-init-only-run-once/_list similarity index 100% rename from test/chj-home-expected/--changes/0041-home-init-only-run-once/_list rename to split-patch/test/chj-home-expected/--changes/0041-home-init-only-run-once/_list diff --git a/test/chj-home-expected/--changes/0042-home-init-create-scratch-directory/0042-home-init-create-scratch-directory-home-init-000.patch b/split-patch/test/chj-home-expected/--changes/0042-home-init-create-scratch-directory/0042-home-init-create-scratch-directory-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0042-home-init-create-scratch-directory/0042-home-init-create-scratch-directory-home-init-000.patch rename to split-patch/test/chj-home-expected/--changes/0042-home-init-create-scratch-directory/0042-home-init-create-scratch-directory-home-init-000.patch diff --git a/test/chj-home-expected/--changes/0042-home-init-create-scratch-directory/_list b/split-patch/test/chj-home-expected/--changes/0042-home-init-create-scratch-directory/_list similarity index 100% rename from test/chj-home-expected/--changes/0042-home-init-create-scratch-directory/_list rename to split-patch/test/chj-home-expected/--changes/0042-home-init-create-scratch-directory/_list diff --git a/test/chj-home-expected/--changes/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/_list b/split-patch/test/chj-home-expected/--changes/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/_list similarity index 100% rename from test/chj-home-expected/--changes/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/_list rename to split-patch/test/chj-home-expected/--changes/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/_list diff --git a/test/chj-home-expected/--changes/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/_list b/split-patch/test/chj-home-expected/--changes/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/_list similarity index 100% rename from test/chj-home-expected/--changes/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/_list rename to split-patch/test/chj-home-expected/--changes/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/_list diff --git a/test/chj-home-expected/--changes/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/_list b/split-patch/test/chj-home-expected/--changes/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/_list similarity index 100% rename from test/chj-home-expected/--changes/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/_list rename to split-patch/test/chj-home-expected/--changes/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/_list diff --git a/test/chj-home-expected/--changes/0046-.bash_profile-stop-the-X-beep/0046-.bash_profile-stop-the-X-beep-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0046-.bash_profile-stop-the-X-beep/0046-.bash_profile-stop-the-X-beep-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0046-.bash_profile-stop-the-X-beep/0046-.bash_profile-stop-the-X-beep-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0046-.bash_profile-stop-the-X-beep/0046-.bash_profile-stop-the-X-beep-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0046-.bash_profile-stop-the-X-beep/_list b/split-patch/test/chj-home-expected/--changes/0046-.bash_profile-stop-the-X-beep/_list similarity index 100% rename from test/chj-home-expected/--changes/0046-.bash_profile-stop-the-X-beep/_list rename to split-patch/test/chj-home-expected/--changes/0046-.bash_profile-stop-the-X-beep/_list diff --git a/test/chj-home-expected/--changes/0047-.Xresources-reduce-emacs-window-height/0047-.Xresources-reduce-emacs-window-height-.Xresources-000.patch b/split-patch/test/chj-home-expected/--changes/0047-.Xresources-reduce-emacs-window-height/0047-.Xresources-reduce-emacs-window-height-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0047-.Xresources-reduce-emacs-window-height/0047-.Xresources-reduce-emacs-window-height-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--changes/0047-.Xresources-reduce-emacs-window-height/0047-.Xresources-reduce-emacs-window-height-.Xresources-000.patch diff --git a/test/chj-home-expected/--changes/0047-.Xresources-reduce-emacs-window-height/_list b/split-patch/test/chj-home-expected/--changes/0047-.Xresources-reduce-emacs-window-height/_list similarity index 100% rename from test/chj-home-expected/--changes/0047-.Xresources-reduce-emacs-window-height/_list rename to split-patch/test/chj-home-expected/--changes/0047-.Xresources-reduce-emacs-window-height/_list diff --git a/test/chj-home-expected/--changes/0048-.bash_profile-increase-default-virtual-memory-limit/0048-.bash_profile-increase-default-virtual-memory-limit-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0048-.bash_profile-increase-default-virtual-memory-limit/0048-.bash_profile-increase-default-virtual-memory-limit-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0048-.bash_profile-increase-default-virtual-memory-limit/0048-.bash_profile-increase-default-virtual-memory-limit-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0048-.bash_profile-increase-default-virtual-memory-limit/0048-.bash_profile-increase-default-virtual-memory-limit-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0048-.bash_profile-increase-default-virtual-memory-limit/_list b/split-patch/test/chj-home-expected/--changes/0048-.bash_profile-increase-default-virtual-memory-limit/_list similarity index 100% rename from test/chj-home-expected/--changes/0048-.bash_profile-increase-default-virtual-memory-limit/_list rename to split-patch/test/chj-home-expected/--changes/0048-.bash_profile-increase-default-virtual-memory-limit/_list diff --git a/test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-001.patch b/split-patch/test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-001.patch rename to split-patch/test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-001.patch diff --git a/test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/_list b/split-patch/test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/_list similarity index 100% rename from test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/_list rename to split-patch/test/chj-home-expected/--changes/0049-move-home-init-.chj-home-init/_list diff --git a/test/chj-home-expected/--changes/0050-.bash_profile-stop-the-X-beep/0050-.bash_profile-stop-the-X-beep-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0050-.bash_profile-stop-the-X-beep/0050-.bash_profile-stop-the-X-beep-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0050-.bash_profile-stop-the-X-beep/0050-.bash_profile-stop-the-X-beep-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0050-.bash_profile-stop-the-X-beep/0050-.bash_profile-stop-the-X-beep-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0050-.bash_profile-stop-the-X-beep/_list b/split-patch/test/chj-home-expected/--changes/0050-.bash_profile-stop-the-X-beep/_list similarity index 100% rename from test/chj-home-expected/--changes/0050-.bash_profile-stop-the-X-beep/_list rename to split-patch/test/chj-home-expected/--changes/0050-.bash_profile-stop-the-X-beep/_list diff --git a/test/chj-home-expected/--changes/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-001.patch b/split-patch/test/chj-home-expected/--changes/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-001.patch rename to split-patch/test/chj-home-expected/--changes/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-001.patch diff --git a/test/chj-home-expected/--changes/0051-symlink-the-opt-chj-emacs-bin-scripts/_list b/split-patch/test/chj-home-expected/--changes/0051-symlink-the-opt-chj-emacs-bin-scripts/_list similarity index 100% rename from test/chj-home-expected/--changes/0051-symlink-the-opt-chj-emacs-bin-scripts/_list rename to split-patch/test/chj-home-expected/--changes/0051-symlink-the-opt-chj-emacs-bin-scripts/_list diff --git a/test/chj-home-expected/--changes/0052-.bashrc-use-false-instead-of-return-1/0052-.bashrc-use-false-instead-of-return-1-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0052-.bashrc-use-false-instead-of-return-1/0052-.bashrc-use-false-instead-of-return-1-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0052-.bashrc-use-false-instead-of-return-1/0052-.bashrc-use-false-instead-of-return-1-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0052-.bashrc-use-false-instead-of-return-1/0052-.bashrc-use-false-instead-of-return-1-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0052-.bashrc-use-false-instead-of-return-1/_list b/split-patch/test/chj-home-expected/--changes/0052-.bashrc-use-false-instead-of-return-1/_list similarity index 100% rename from test/chj-home-expected/--changes/0052-.bashrc-use-false-instead-of-return-1/_list rename to split-patch/test/chj-home-expected/--changes/0052-.bashrc-use-false-instead-of-return-1/_list diff --git a/test/chj-home-expected/--changes/0053-.Xresources-emacs-back-to-internal-LCD-novo/0053-.Xresources-emacs-back-to-internal-LCD-novo-.Xresources-000.patch b/split-patch/test/chj-home-expected/--changes/0053-.Xresources-emacs-back-to-internal-LCD-novo/0053-.Xresources-emacs-back-to-internal-LCD-novo-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0053-.Xresources-emacs-back-to-internal-LCD-novo/0053-.Xresources-emacs-back-to-internal-LCD-novo-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--changes/0053-.Xresources-emacs-back-to-internal-LCD-novo/0053-.Xresources-emacs-back-to-internal-LCD-novo-.Xresources-000.patch diff --git a/test/chj-home-expected/--changes/0053-.Xresources-emacs-back-to-internal-LCD-novo/_list b/split-patch/test/chj-home-expected/--changes/0053-.Xresources-emacs-back-to-internal-LCD-novo/_list similarity index 100% rename from test/chj-home-expected/--changes/0053-.Xresources-emacs-back-to-internal-LCD-novo/_list rename to split-patch/test/chj-home-expected/--changes/0053-.Xresources-emacs-back-to-internal-LCD-novo/_list diff --git a/test/chj-home-expected/--changes/0054-.Xresources-omfg-it-was-correctly-displayed/0054-.Xresources-omfg-it-was-correctly-displayed-.Xresources-000.patch b/split-patch/test/chj-home-expected/--changes/0054-.Xresources-omfg-it-was-correctly-displayed/0054-.Xresources-omfg-it-was-correctly-displayed-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0054-.Xresources-omfg-it-was-correctly-displayed/0054-.Xresources-omfg-it-was-correctly-displayed-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--changes/0054-.Xresources-omfg-it-was-correctly-displayed/0054-.Xresources-omfg-it-was-correctly-displayed-.Xresources-000.patch diff --git a/test/chj-home-expected/--changes/0054-.Xresources-omfg-it-was-correctly-displayed/_list b/split-patch/test/chj-home-expected/--changes/0054-.Xresources-omfg-it-was-correctly-displayed/_list similarity index 100% rename from test/chj-home-expected/--changes/0054-.Xresources-omfg-it-was-correctly-displayed/_list rename to split-patch/test/chj-home-expected/--changes/0054-.Xresources-omfg-it-was-correctly-displayed/_list diff --git a/test/chj-home-expected/--changes/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/0055-add-.xscreensaver-with-hand-selection-through-ALL-of-.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--changes/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/0055-add-.xscreensaver-with-hand-selection-through-ALL-of-.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/0055-add-.xscreensaver-with-hand-selection-through-ALL-of-.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--changes/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/0055-add-.xscreensaver-with-hand-selection-through-ALL-of-.xscreensaver-000.patch diff --git a/test/chj-home-expected/--changes/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/_list b/split-patch/test/chj-home-expected/--changes/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/_list similarity index 100% rename from test/chj-home-expected/--changes/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/_list rename to split-patch/test/chj-home-expected/--changes/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/_list diff --git a/test/chj-home-expected/--changes/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--changes/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--changes/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-000.patch diff --git a/test/chj-home-expected/--changes/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-001.patch b/split-patch/test/chj-home-expected/--changes/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-001.patch rename to split-patch/test/chj-home-expected/--changes/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-001.patch diff --git a/test/chj-home-expected/--changes/0056-.xscreensaver-disable-sonar/_list b/split-patch/test/chj-home-expected/--changes/0056-.xscreensaver-disable-sonar/_list similarity index 100% rename from test/chj-home-expected/--changes/0056-.xscreensaver-disable-sonar/_list rename to split-patch/test/chj-home-expected/--changes/0056-.xscreensaver-disable-sonar/_list diff --git a/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-000.patch diff --git a/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-001.patch b/split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-001.patch rename to split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-001.patch diff --git a/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-002.patch b/split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-002.patch rename to split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-002.patch diff --git a/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-003.patch b/split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-003.patch rename to split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-003.patch diff --git a/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-004.patch b/split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-004.patch similarity index 100% rename from test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-004.patch rename to split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-004.patch diff --git a/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-005.patch b/split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-005.patch similarity index 100% rename from test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-005.patch rename to split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-005.patch diff --git a/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-006.patch b/split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-006.patch similarity index 100% rename from test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-006.patch rename to split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-006.patch diff --git a/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-007.patch b/split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-007.patch similarity index 100% rename from test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-007.patch rename to split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-007.patch diff --git a/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-008.patch b/split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-008.patch similarity index 100% rename from test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-008.patch rename to split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-008.patch diff --git a/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/_list b/split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/_list similarity index 100% rename from test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/_list rename to split-patch/test/chj-home-expected/--changes/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/_list diff --git a/test/chj-home-expected/--changes/0058-.bashrc-ls-with-colors/0058-.bashrc-ls-with-colors-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0058-.bashrc-ls-with-colors/0058-.bashrc-ls-with-colors-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0058-.bashrc-ls-with-colors/0058-.bashrc-ls-with-colors-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0058-.bashrc-ls-with-colors/0058-.bashrc-ls-with-colors-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0058-.bashrc-ls-with-colors/_list b/split-patch/test/chj-home-expected/--changes/0058-.bashrc-ls-with-colors/_list similarity index 100% rename from test/chj-home-expected/--changes/0058-.bashrc-ls-with-colors/_list rename to split-patch/test/chj-home-expected/--changes/0058-.bashrc-ls-with-colors/_list diff --git a/test/chj-home-expected/--changes/0059-.bashrc-remove-le-function/0059-.bashrc-remove-le-function-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0059-.bashrc-remove-le-function/0059-.bashrc-remove-le-function-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0059-.bashrc-remove-le-function/0059-.bashrc-remove-le-function-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0059-.bashrc-remove-le-function/0059-.bashrc-remove-le-function-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0059-.bashrc-remove-le-function/_list b/split-patch/test/chj-home-expected/--changes/0059-.bashrc-remove-le-function/_list similarity index 100% rename from test/chj-home-expected/--changes/0059-.bashrc-remove-le-function/_list rename to split-patch/test/chj-home-expected/--changes/0059-.bashrc-remove-le-function/_list diff --git a/test/chj-home-expected/--changes/0060-make-unlimit-accept-a-command/0060-make-unlimit-accept-a-command-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0060-make-unlimit-accept-a-command/0060-make-unlimit-accept-a-command-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0060-make-unlimit-accept-a-command/0060-make-unlimit-accept-a-command-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0060-make-unlimit-accept-a-command/0060-make-unlimit-accept-a-command-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0060-make-unlimit-accept-a-command/_list b/split-patch/test/chj-home-expected/--changes/0060-make-unlimit-accept-a-command/_list similarity index 100% rename from test/chj-home-expected/--changes/0060-make-unlimit-accept-a-command/_list rename to split-patch/test/chj-home-expected/--changes/0060-make-unlimit-accept-a-command/_list diff --git a/test/chj-home-expected/--changes/0061-move-.xscreensaver-config-file-let-user-symlink-it/_list b/split-patch/test/chj-home-expected/--changes/0061-move-.xscreensaver-config-file-let-user-symlink-it/_list similarity index 100% rename from test/chj-home-expected/--changes/0061-move-.xscreensaver-config-file-let-user-symlink-it/_list rename to split-patch/test/chj-home-expected/--changes/0061-move-.xscreensaver-config-file-let-user-symlink-it/_list diff --git a/test/chj-home-expected/--changes/0062-turn-PrtSc-button-into-Control/0062-turn-PrtSc-button-into-Control-.xmodmaprc-000.patch b/split-patch/test/chj-home-expected/--changes/0062-turn-PrtSc-button-into-Control/0062-turn-PrtSc-button-into-Control-.xmodmaprc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0062-turn-PrtSc-button-into-Control/0062-turn-PrtSc-button-into-Control-.xmodmaprc-000.patch rename to split-patch/test/chj-home-expected/--changes/0062-turn-PrtSc-button-into-Control/0062-turn-PrtSc-button-into-Control-.xmodmaprc-000.patch diff --git a/test/chj-home-expected/--changes/0062-turn-PrtSc-button-into-Control/_list b/split-patch/test/chj-home-expected/--changes/0062-turn-PrtSc-button-into-Control/_list similarity index 100% rename from test/chj-home-expected/--changes/0062-turn-PrtSc-button-into-Control/_list rename to split-patch/test/chj-home-expected/--changes/0062-turn-PrtSc-button-into-Control/_list diff --git a/test/chj-home-expected/--changes/0063-.bashrc-silence-error-message-when-in-scratch/0063-.bashrc-silence-error-message-when-in-scratch-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0063-.bashrc-silence-error-message-when-in-scratch/0063-.bashrc-silence-error-message-when-in-scratch-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0063-.bashrc-silence-error-message-when-in-scratch/0063-.bashrc-silence-error-message-when-in-scratch-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0063-.bashrc-silence-error-message-when-in-scratch/0063-.bashrc-silence-error-message-when-in-scratch-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0063-.bashrc-silence-error-message-when-in-scratch/_list b/split-patch/test/chj-home-expected/--changes/0063-.bashrc-silence-error-message-when-in-scratch/_list similarity index 100% rename from test/chj-home-expected/--changes/0063-.bashrc-silence-error-message-when-in-scratch/_list rename to split-patch/test/chj-home-expected/--changes/0063-.bashrc-silence-error-message-when-in-scratch/_list diff --git a/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-002.patch b/split-patch/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-002.patch diff --git a/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-003.patch b/split-patch/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-003.patch rename to split-patch/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-003.patch diff --git a/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/_list b/split-patch/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/_list similarity index 100% rename from test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/_list rename to split-patch/test/chj-home-expected/--changes/0064-.bashrc-don-t-use-backticks/_list diff --git a/test/chj-home-expected/--changes/0065-.bashrc-add-rensn/0065-.bashrc-add-rensn-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0065-.bashrc-add-rensn/0065-.bashrc-add-rensn-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0065-.bashrc-add-rensn/0065-.bashrc-add-rensn-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0065-.bashrc-add-rensn/0065-.bashrc-add-rensn-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0065-.bashrc-add-rensn/_list b/split-patch/test/chj-home-expected/--changes/0065-.bashrc-add-rensn/_list similarity index 100% rename from test/chj-home-expected/--changes/0065-.bashrc-add-rensn/_list rename to split-patch/test/chj-home-expected/--changes/0065-.bashrc-add-rensn/_list diff --git a/test/chj-home-expected/--changes/0066-.bashrc-add-rensnall/0066-.bashrc-add-rensnall-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0066-.bashrc-add-rensnall/0066-.bashrc-add-rensnall-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0066-.bashrc-add-rensnall/0066-.bashrc-add-rensnall-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0066-.bashrc-add-rensnall/0066-.bashrc-add-rensnall-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0066-.bashrc-add-rensnall/_list b/split-patch/test/chj-home-expected/--changes/0066-.bashrc-add-rensnall/_list similarity index 100% rename from test/chj-home-expected/--changes/0066-.bashrc-add-rensnall/_list rename to split-patch/test/chj-home-expected/--changes/0066-.bashrc-add-rensnall/_list diff --git a/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-002.patch b/split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-002.patch diff --git a/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-003.patch b/split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-003.patch rename to split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-003.patch diff --git a/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-004.patch b/split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-004.patch similarity index 100% rename from test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-004.patch rename to split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-004.patch diff --git a/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-005.patch b/split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-005.patch similarity index 100% rename from test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-005.patch rename to split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-005.patch diff --git a/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-006.patch b/split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-006.patch similarity index 100% rename from test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-006.patch rename to split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-006.patch diff --git a/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-007.patch b/split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-007.patch similarity index 100% rename from test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-007.patch rename to split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-007.patch diff --git a/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-008.patch b/split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-008.patch similarity index 100% rename from test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-008.patch rename to split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-008.patch diff --git a/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-009.patch b/split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-009.patch similarity index 100% rename from test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-009.patch rename to split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-009.patch diff --git a/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-010.patch b/split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-010.patch similarity index 100% rename from test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-010.patch rename to split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-010.patch diff --git a/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-011.patch b/split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-011.patch similarity index 100% rename from test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-011.patch rename to split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-011.patch diff --git a/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/_list b/split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/_list similarity index 100% rename from test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/_list rename to split-patch/test/chj-home-expected/--changes/0067-.bashrc-consistently-format-function-definitions/_list diff --git a/test/chj-home-expected/--changes/0068-.bashrc-use-ren-nonrenamed/0068-.bashrc-use-ren-nonrenamed-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0068-.bashrc-use-ren-nonrenamed/0068-.bashrc-use-ren-nonrenamed-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0068-.bashrc-use-ren-nonrenamed/0068-.bashrc-use-ren-nonrenamed-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0068-.bashrc-use-ren-nonrenamed/0068-.bashrc-use-ren-nonrenamed-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0068-.bashrc-use-ren-nonrenamed/_list b/split-patch/test/chj-home-expected/--changes/0068-.bashrc-use-ren-nonrenamed/_list similarity index 100% rename from test/chj-home-expected/--changes/0068-.bashrc-use-ren-nonrenamed/_list rename to split-patch/test/chj-home-expected/--changes/0068-.bashrc-use-ren-nonrenamed/_list diff --git a/test/chj-home-expected/--changes/0069-.bashrc-shorten-that-name/0069-.bashrc-shorten-that-name-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0069-.bashrc-shorten-that-name/0069-.bashrc-shorten-that-name-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0069-.bashrc-shorten-that-name/0069-.bashrc-shorten-that-name-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0069-.bashrc-shorten-that-name/0069-.bashrc-shorten-that-name-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0069-.bashrc-shorten-that-name/_list b/split-patch/test/chj-home-expected/--changes/0069-.bashrc-shorten-that-name/_list similarity index 100% rename from test/chj-home-expected/--changes/0069-.bashrc-shorten-that-name/_list rename to split-patch/test/chj-home-expected/--changes/0069-.bashrc-shorten-that-name/_list diff --git a/test/chj-home-expected/--changes/0070-.bashrc-add-cb/0070-.bashrc-add-cb-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0070-.bashrc-add-cb/0070-.bashrc-add-cb-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0070-.bashrc-add-cb/0070-.bashrc-add-cb-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0070-.bashrc-add-cb/0070-.bashrc-add-cb-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0070-.bashrc-add-cb/_list b/split-patch/test/chj-home-expected/--changes/0070-.bashrc-add-cb/_list similarity index 100% rename from test/chj-home-expected/--changes/0070-.bashrc-add-cb/_list rename to split-patch/test/chj-home-expected/--changes/0070-.bashrc-add-cb/_list diff --git a/test/chj-home-expected/--changes/0071-Turn-off-new-Git-editor-waiting-warning/0071-Turn-off-new-Git-editor-waiting-warning-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0071-Turn-off-new-Git-editor-waiting-warning/0071-Turn-off-new-Git-editor-waiting-warning-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0071-Turn-off-new-Git-editor-waiting-warning/0071-Turn-off-new-Git-editor-waiting-warning-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0071-Turn-off-new-Git-editor-waiting-warning/0071-Turn-off-new-Git-editor-waiting-warning-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0071-Turn-off-new-Git-editor-waiting-warning/_list b/split-patch/test/chj-home-expected/--changes/0071-Turn-off-new-Git-editor-waiting-warning/_list similarity index 100% rename from test/chj-home-expected/--changes/0071-Turn-off-new-Git-editor-waiting-warning/_list rename to split-patch/test/chj-home-expected/--changes/0071-Turn-off-new-Git-editor-waiting-warning/_list diff --git a/test/chj-home-expected/--changes/0072-.bashrc-cb-accept-argument/0072-.bashrc-cb-accept-argument-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0072-.bashrc-cb-accept-argument/0072-.bashrc-cb-accept-argument-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0072-.bashrc-cb-accept-argument/0072-.bashrc-cb-accept-argument-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0072-.bashrc-cb-accept-argument/0072-.bashrc-cb-accept-argument-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0072-.bashrc-cb-accept-argument/_list b/split-patch/test/chj-home-expected/--changes/0072-.bashrc-cb-accept-argument/_list similarity index 100% rename from test/chj-home-expected/--changes/0072-.bashrc-cb-accept-argument/_list rename to split-patch/test/chj-home-expected/--changes/0072-.bashrc-cb-accept-argument/_list diff --git a/test/chj-home-expected/--changes/0073-.bashrc-cb-do-it-better/0073-.bashrc-cb-do-it-better-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0073-.bashrc-cb-do-it-better/0073-.bashrc-cb-do-it-better-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0073-.bashrc-cb-do-it-better/0073-.bashrc-cb-do-it-better-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0073-.bashrc-cb-do-it-better/0073-.bashrc-cb-do-it-better-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0073-.bashrc-cb-do-it-better/_list b/split-patch/test/chj-home-expected/--changes/0073-.bashrc-cb-do-it-better/_list similarity index 100% rename from test/chj-home-expected/--changes/0073-.bashrc-cb-do-it-better/_list rename to split-patch/test/chj-home-expected/--changes/0073-.bashrc-cb-do-it-better/_list diff --git a/test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.lesskey-000.patch b/split-patch/test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.lesskey-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.lesskey-000.patch rename to split-patch/test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.lesskey-000.patch diff --git a/test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/_list b/split-patch/test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/_list similarity index 100% rename from test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/_list rename to split-patch/test/chj-home-expected/--changes/0074-Don-t-use-.lesskey-anymore-for-env-LESS/_list diff --git a/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-002.patch b/split-patch/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-002.patch diff --git a/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-003.patch b/split-patch/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-003.patch rename to split-patch/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-003.patch diff --git a/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-004.patch b/split-patch/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-004.patch similarity index 100% rename from test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-004.patch rename to split-patch/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-004.patch diff --git a/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-005.patch b/split-patch/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-005.patch similarity index 100% rename from test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-005.patch rename to split-patch/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-005.patch diff --git a/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/_list b/split-patch/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/_list similarity index 100% rename from test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/_list rename to split-patch/test/chj-home-expected/--changes/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/_list diff --git a/test/chj-home-expected/--changes/0076-.bashrc-have-u-etc.-take-optional-argument/0076-.bashrc-have-u-etc.-take-optional-argument-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0076-.bashrc-have-u-etc.-take-optional-argument/0076-.bashrc-have-u-etc.-take-optional-argument-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0076-.bashrc-have-u-etc.-take-optional-argument/0076-.bashrc-have-u-etc.-take-optional-argument-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0076-.bashrc-have-u-etc.-take-optional-argument/0076-.bashrc-have-u-etc.-take-optional-argument-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0076-.bashrc-have-u-etc.-take-optional-argument/_list b/split-patch/test/chj-home-expected/--changes/0076-.bashrc-have-u-etc.-take-optional-argument/_list similarity index 100% rename from test/chj-home-expected/--changes/0076-.bashrc-have-u-etc.-take-optional-argument/_list rename to split-patch/test/chj-home-expected/--changes/0076-.bashrc-have-u-etc.-take-optional-argument/_list diff --git a/test/chj-home-expected/--changes/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/_list b/split-patch/test/chj-home-expected/--changes/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/_list similarity index 100% rename from test/chj-home-expected/--changes/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/_list rename to split-patch/test/chj-home-expected/--changes/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/_list diff --git a/test/chj-home-expected/--changes/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/0078-.bashrc-u-more-transaction-safety-properly-handle-OL-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/0078-.bashrc-u-more-transaction-safety-properly-handle-OL-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/0078-.bashrc-u-more-transaction-safety-properly-handle-OL-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/0078-.bashrc-u-more-transaction-safety-properly-handle-OL-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/_list b/split-patch/test/chj-home-expected/--changes/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/_list similarity index 100% rename from test/chj-home-expected/--changes/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/_list rename to split-patch/test/chj-home-expected/--changes/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/_list diff --git a/test/chj-home-expected/--changes/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/_list b/split-patch/test/chj-home-expected/--changes/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/_list similarity index 100% rename from test/chj-home-expected/--changes/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/_list rename to split-patch/test/chj-home-expected/--changes/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/_list diff --git a/test/chj-home-expected/--changes/0080-.bash_profile-double-history-size/0080-.bash_profile-double-history-size-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0080-.bash_profile-double-history-size/0080-.bash_profile-double-history-size-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0080-.bash_profile-double-history-size/0080-.bash_profile-double-history-size-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0080-.bash_profile-double-history-size/0080-.bash_profile-double-history-size-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0080-.bash_profile-double-history-size/_list b/split-patch/test/chj-home-expected/--changes/0080-.bash_profile-double-history-size/_list similarity index 100% rename from test/chj-home-expected/--changes/0080-.bash_profile-double-history-size/_list rename to split-patch/test/chj-home-expected/--changes/0080-.bash_profile-double-history-size/_list diff --git a/test/chj-home-expected/--changes/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard-.xpdfrc-000.patch b/split-patch/test/chj-home-expected/--changes/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard-.xpdfrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard-.xpdfrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard-.xpdfrc-000.patch diff --git a/test/chj-home-expected/--changes/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/_list b/split-patch/test/chj-home-expected/--changes/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/_list similarity index 100% rename from test/chj-home-expected/--changes/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/_list rename to split-patch/test/chj-home-expected/--changes/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/_list diff --git a/test/chj-home-expected/--changes/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile-001.patch b/split-patch/test/chj-home-expected/--changes/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile-001.patch rename to split-patch/test/chj-home-expected/--changes/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile-001.patch diff --git a/test/chj-home-expected/--changes/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/_list b/split-patch/test/chj-home-expected/--changes/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/_list similarity index 100% rename from test/chj-home-expected/--changes/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/_list rename to split-patch/test/chj-home-expected/--changes/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/_list diff --git a/test/chj-home-expected/--changes/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0083-Yet-increase-bash-history-size-more/_list b/split-patch/test/chj-home-expected/--changes/0083-Yet-increase-bash-history-size-more/_list similarity index 100% rename from test/chj-home-expected/--changes/0083-Yet-increase-bash-history-size-more/_list rename to split-patch/test/chj-home-expected/--changes/0083-Yet-increase-bash-history-size-more/_list diff --git a/test/chj-home-expected/--changes/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0084-Move-CHJHOSTNAME-to-right-place-too/_list b/split-patch/test/chj-home-expected/--changes/0084-Move-CHJHOSTNAME-to-right-place-too/_list similarity index 100% rename from test/chj-home-expected/--changes/0084-Move-CHJHOSTNAME-to-right-place-too/_list rename to split-patch/test/chj-home-expected/--changes/0084-Move-CHJHOSTNAME-to-right-place-too/_list diff --git a/test/chj-home-expected/--changes/0085-.bashrc-add-cdn-alias-for-cd_newest/0085-.bashrc-add-cdn-alias-for-cd_newest-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0085-.bashrc-add-cdn-alias-for-cd_newest/0085-.bashrc-add-cdn-alias-for-cd_newest-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0085-.bashrc-add-cdn-alias-for-cd_newest/0085-.bashrc-add-cdn-alias-for-cd_newest-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0085-.bashrc-add-cdn-alias-for-cd_newest/0085-.bashrc-add-cdn-alias-for-cd_newest-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0085-.bashrc-add-cdn-alias-for-cd_newest/_list b/split-patch/test/chj-home-expected/--changes/0085-.bashrc-add-cdn-alias-for-cd_newest/_list similarity index 100% rename from test/chj-home-expected/--changes/0085-.bashrc-add-cdn-alias-for-cd_newest/_list rename to split-patch/test/chj-home-expected/--changes/0085-.bashrc-add-cdn-alias-for-cd_newest/_list diff --git a/test/chj-home-expected/--changes/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0086-.bashrc-remove-stale-commented-lines/_list b/split-patch/test/chj-home-expected/--changes/0086-.bashrc-remove-stale-commented-lines/_list similarity index 100% rename from test/chj-home-expected/--changes/0086-.bashrc-remove-stale-commented-lines/_list rename to split-patch/test/chj-home-expected/--changes/0086-.bashrc-remove-stale-commented-lines/_list diff --git a/test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-002.patch b/split-patch/test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-002.patch diff --git a/test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/_list b/split-patch/test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/_list similarity index 100% rename from test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/_list rename to split-patch/test/chj-home-expected/--changes/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/_list diff --git a/test/chj-home-expected/--changes/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/_list b/split-patch/test/chj-home-expected/--changes/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/_list similarity index 100% rename from test/chj-home-expected/--changes/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/_list rename to split-patch/test/chj-home-expected/--changes/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/_list diff --git a/test/chj-home-expected/--changes/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again-.chj-home_dot.xscreensaver-dull-000.patch b/split-patch/test/chj-home-expected/--changes/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again-.chj-home_dot.xscreensaver-dull-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again-.chj-home_dot.xscreensaver-dull-000.patch rename to split-patch/test/chj-home-expected/--changes/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again-.chj-home_dot.xscreensaver-dull-000.patch diff --git a/test/chj-home-expected/--changes/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/_list b/split-patch/test/chj-home-expected/--changes/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/_list similarity index 100% rename from test/chj-home-expected/--changes/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/_list rename to split-patch/test/chj-home-expected/--changes/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/_list diff --git a/test/chj-home-expected/--changes/0090-.bashrc-cdn-ah-I-can-overload-it/0090-.bashrc-cdn-ah-I-can-overload-it-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0090-.bashrc-cdn-ah-I-can-overload-it/0090-.bashrc-cdn-ah-I-can-overload-it-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0090-.bashrc-cdn-ah-I-can-overload-it/0090-.bashrc-cdn-ah-I-can-overload-it-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0090-.bashrc-cdn-ah-I-can-overload-it/0090-.bashrc-cdn-ah-I-can-overload-it-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0090-.bashrc-cdn-ah-I-can-overload-it/_list b/split-patch/test/chj-home-expected/--changes/0090-.bashrc-cdn-ah-I-can-overload-it/_list similarity index 100% rename from test/chj-home-expected/--changes/0090-.bashrc-cdn-ah-I-can-overload-it/_list rename to split-patch/test/chj-home-expected/--changes/0090-.bashrc-cdn-ah-I-can-overload-it/_list diff --git a/test/chj-home-expected/--changes/0091-.bashrc-add-cj/0091-.bashrc-add-cj-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0091-.bashrc-add-cj/0091-.bashrc-add-cj-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0091-.bashrc-add-cj/0091-.bashrc-add-cj-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0091-.bashrc-add-cj/0091-.bashrc-add-cj-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0091-.bashrc-add-cj/_list b/split-patch/test/chj-home-expected/--changes/0091-.bashrc-add-cj/_list similarity index 100% rename from test/chj-home-expected/--changes/0091-.bashrc-add-cj/_list rename to split-patch/test/chj-home-expected/--changes/0091-.bashrc-add-cj/_list diff --git a/test/chj-home-expected/--changes/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/0092-.chj-home-init-make-sure-the-chjize-key-is-imported-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/0092-.chj-home-init-make-sure-the-chjize-key-is-imported-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/0092-.chj-home-init-make-sure-the-chjize-key-is-imported-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/0092-.chj-home-init-make-sure-the-chjize-key-is-imported-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/_list b/split-patch/test/chj-home-expected/--changes/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/_list similarity index 100% rename from test/chj-home-expected/--changes/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/_list rename to split-patch/test/chj-home-expected/--changes/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/_list diff --git a/test/chj-home-expected/--changes/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-001.patch b/split-patch/test/chj-home-expected/--changes/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-001.patch rename to split-patch/test/chj-home-expected/--changes/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-001.patch diff --git a/test/chj-home-expected/--changes/0093-.chj-home-init-move-gpg-import-to-the-end/_list b/split-patch/test/chj-home-expected/--changes/0093-.chj-home-init-move-gpg-import-to-the-end/_list similarity index 100% rename from test/chj-home-expected/--changes/0093-.chj-home-init-move-gpg-import-to-the-end/_list rename to split-patch/test/chj-home-expected/--changes/0093-.chj-home-init-move-gpg-import-to-the-end/_list diff --git a/test/chj-home-expected/--changes/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/0094-.chj-home-init-initialize-a-Git-repo-in-scratch-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/0094-.chj-home-init-initialize-a-Git-repo-in-scratch-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/0094-.chj-home-init-initialize-a-Git-repo-in-scratch-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/0094-.chj-home-init-initialize-a-Git-repo-in-scratch-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/_list b/split-patch/test/chj-home-expected/--changes/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/_list similarity index 100% rename from test/chj-home-expected/--changes/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/_list rename to split-patch/test/chj-home-expected/--changes/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/_list diff --git a/test/chj-home-expected/--changes/0095-.bash_profile-put-chjize-into-PATH/0095-.bash_profile-put-chjize-into-PATH-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0095-.bash_profile-put-chjize-into-PATH/0095-.bash_profile-put-chjize-into-PATH-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0095-.bash_profile-put-chjize-into-PATH/0095-.bash_profile-put-chjize-into-PATH-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0095-.bash_profile-put-chjize-into-PATH/0095-.bash_profile-put-chjize-into-PATH-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0095-.bash_profile-put-chjize-into-PATH/_list b/split-patch/test/chj-home-expected/--changes/0095-.bash_profile-put-chjize-into-PATH/_list similarity index 100% rename from test/chj-home-expected/--changes/0095-.bash_profile-put-chjize-into-PATH/_list rename to split-patch/test/chj-home-expected/--changes/0095-.bash_profile-put-chjize-into-PATH/_list diff --git a/test/chj-home-expected/--changes/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/_list b/split-patch/test/chj-home-expected/--changes/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/_list similarity index 100% rename from test/chj-home-expected/--changes/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/_list rename to split-patch/test/chj-home-expected/--changes/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/_list diff --git a/test/chj-home-expected/--changes/0097-.bash_profile-set-USER-if-missing/0097-.bash_profile-set-USER-if-missing-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0097-.bash_profile-set-USER-if-missing/0097-.bash_profile-set-USER-if-missing-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0097-.bash_profile-set-USER-if-missing/0097-.bash_profile-set-USER-if-missing-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0097-.bash_profile-set-USER-if-missing/0097-.bash_profile-set-USER-if-missing-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0097-.bash_profile-set-USER-if-missing/_list b/split-patch/test/chj-home-expected/--changes/0097-.bash_profile-set-USER-if-missing/_list similarity index 100% rename from test/chj-home-expected/--changes/0097-.bash_profile-set-USER-if-missing/_list rename to split-patch/test/chj-home-expected/--changes/0097-.bash_profile-set-USER-if-missing/_list diff --git a/test/chj-home-expected/--changes/0098-.bash_profile-add-cj-qemucontrol-to-PATH/0098-.bash_profile-add-cj-qemucontrol-to-PATH-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0098-.bash_profile-add-cj-qemucontrol-to-PATH/0098-.bash_profile-add-cj-qemucontrol-to-PATH-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0098-.bash_profile-add-cj-qemucontrol-to-PATH/0098-.bash_profile-add-cj-qemucontrol-to-PATH-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0098-.bash_profile-add-cj-qemucontrol-to-PATH/0098-.bash_profile-add-cj-qemucontrol-to-PATH-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0098-.bash_profile-add-cj-qemucontrol-to-PATH/_list b/split-patch/test/chj-home-expected/--changes/0098-.bash_profile-add-cj-qemucontrol-to-PATH/_list similarity index 100% rename from test/chj-home-expected/--changes/0098-.bash_profile-add-cj-qemucontrol-to-PATH/_list rename to split-patch/test/chj-home-expected/--changes/0098-.bash_profile-add-cj-qemucontrol-to-PATH/_list diff --git a/test/chj-home-expected/--changes/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init-001.patch b/split-patch/test/chj-home-expected/--changes/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init-001.patch rename to split-patch/test/chj-home-expected/--changes/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init-001.patch diff --git a/test/chj-home-expected/--changes/0099-.chj-home-init-accept-email-addresses-with-full-name/_list b/split-patch/test/chj-home-expected/--changes/0099-.chj-home-init-accept-email-addresses-with-full-name/_list similarity index 100% rename from test/chj-home-expected/--changes/0099-.chj-home-init-accept-email-addresses-with-full-name/_list rename to split-patch/test/chj-home-expected/--changes/0099-.chj-home-init-accept-email-addresses-with-full-name/_list diff --git a/test/chj-home-expected/--changes/0100-.chj-home-init-set-scoma-settings/0100-.chj-home-init-set-scoma-settings-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0100-.chj-home-init-set-scoma-settings/0100-.chj-home-init-set-scoma-settings-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0100-.chj-home-init-set-scoma-settings/0100-.chj-home-init-set-scoma-settings-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0100-.chj-home-init-set-scoma-settings/0100-.chj-home-init-set-scoma-settings-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0100-.chj-home-init-set-scoma-settings/_list b/split-patch/test/chj-home-expected/--changes/0100-.chj-home-init-set-scoma-settings/_list similarity index 100% rename from test/chj-home-expected/--changes/0100-.chj-home-init-set-scoma-settings/_list rename to split-patch/test/chj-home-expected/--changes/0100-.chj-home-init-set-scoma-settings/_list diff --git a/test/chj-home-expected/--changes/0101-.chj-home-init-fix-perms-on-checked-out-directories/0101-.chj-home-init-fix-perms-on-checked-out-directories-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0101-.chj-home-init-fix-perms-on-checked-out-directories/0101-.chj-home-init-fix-perms-on-checked-out-directories-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0101-.chj-home-init-fix-perms-on-checked-out-directories/0101-.chj-home-init-fix-perms-on-checked-out-directories-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0101-.chj-home-init-fix-perms-on-checked-out-directories/0101-.chj-home-init-fix-perms-on-checked-out-directories-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0101-.chj-home-init-fix-perms-on-checked-out-directories/_list b/split-patch/test/chj-home-expected/--changes/0101-.chj-home-init-fix-perms-on-checked-out-directories/_list similarity index 100% rename from test/chj-home-expected/--changes/0101-.chj-home-init-fix-perms-on-checked-out-directories/_list rename to split-patch/test/chj-home-expected/--changes/0101-.chj-home-init-fix-perms-on-checked-out-directories/_list diff --git a/test/chj-home-expected/--changes/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/_list b/split-patch/test/chj-home-expected/--changes/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/_list similarity index 100% rename from test/chj-home-expected/--changes/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/_list rename to split-patch/test/chj-home-expected/--changes/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/_list diff --git a/test/chj-home-expected/--changes/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0103-.bashrc-show-exit-code-on-failing-commands/_list b/split-patch/test/chj-home-expected/--changes/0103-.bashrc-show-exit-code-on-failing-commands/_list similarity index 100% rename from test/chj-home-expected/--changes/0103-.bashrc-show-exit-code-on-failing-commands/_list rename to split-patch/test/chj-home-expected/--changes/0103-.bashrc-show-exit-code-on-failing-commands/_list diff --git a/test/chj-home-expected/--changes/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/_list b/split-patch/test/chj-home-expected/--changes/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/_list similarity index 100% rename from test/chj-home-expected/--changes/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/_list rename to split-patch/test/chj-home-expected/--changes/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/_list diff --git a/test/chj-home-expected/--changes/0105-.bashrc-show-exit-code-on-a-separate-line/0105-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0105-.bashrc-show-exit-code-on-a-separate-line/0105-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0105-.bashrc-show-exit-code-on-a-separate-line/0105-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0105-.bashrc-show-exit-code-on-a-separate-line/0105-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0105-.bashrc-show-exit-code-on-a-separate-line/_list b/split-patch/test/chj-home-expected/--changes/0105-.bashrc-show-exit-code-on-a-separate-line/_list similarity index 100% rename from test/chj-home-expected/--changes/0105-.bashrc-show-exit-code-on-a-separate-line/_list rename to split-patch/test/chj-home-expected/--changes/0105-.bashrc-show-exit-code-on-a-separate-line/_list diff --git a/test/chj-home-expected/--changes/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/0106-Revert-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/0106-Revert-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/0106-Revert-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/0106-Revert-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/_list b/split-patch/test/chj-home-expected/--changes/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/_list similarity index 100% rename from test/chj-home-expected/--changes/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/_list rename to split-patch/test/chj-home-expected/--changes/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/_list diff --git a/test/chj-home-expected/--changes/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0107-.bashrc-restructure-prompt-command/_list b/split-patch/test/chj-home-expected/--changes/0107-.bashrc-restructure-prompt-command/_list similarity index 100% rename from test/chj-home-expected/--changes/0107-.bashrc-restructure-prompt-command/_list rename to split-patch/test/chj-home-expected/--changes/0107-.bashrc-restructure-prompt-command/_list diff --git a/test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-002.patch b/split-patch/test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-002.patch diff --git a/test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/_list b/split-patch/test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/_list similarity index 100% rename from test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/_list rename to split-patch/test/chj-home-expected/--changes/0108-.bashrc-set-PS1-differently-on-each-iteration/_list diff --git a/test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-002.patch b/split-patch/test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-002.patch diff --git a/test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/_list b/split-patch/test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/_list similarity index 100% rename from test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/_list rename to split-patch/test/chj-home-expected/--changes/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/_list diff --git a/test/chj-home-expected/--changes/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0110-Revert-.bashrc-restructure-prompt-command/_list b/split-patch/test/chj-home-expected/--changes/0110-Revert-.bashrc-restructure-prompt-command/_list similarity index 100% rename from test/chj-home-expected/--changes/0110-Revert-.bashrc-restructure-prompt-command/_list rename to split-patch/test/chj-home-expected/--changes/0110-Revert-.bashrc-restructure-prompt-command/_list diff --git a/test/chj-home-expected/--changes/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0111-.bashrc-does-not-work/_list b/split-patch/test/chj-home-expected/--changes/0111-.bashrc-does-not-work/_list similarity index 100% rename from test/chj-home-expected/--changes/0111-.bashrc-does-not-work/_list rename to split-patch/test/chj-home-expected/--changes/0111-.bashrc-does-not-work/_list diff --git a/test/chj-home-expected/--changes/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0112-.bashrc-finally-working/_list b/split-patch/test/chj-home-expected/--changes/0112-.bashrc-finally-working/_list similarity index 100% rename from test/chj-home-expected/--changes/0112-.bashrc-finally-working/_list rename to split-patch/test/chj-home-expected/--changes/0112-.bashrc-finally-working/_list diff --git a/test/chj-home-expected/--changes/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/_list b/split-patch/test/chj-home-expected/--changes/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/_list similarity index 100% rename from test/chj-home-expected/--changes/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/_list rename to split-patch/test/chj-home-expected/--changes/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/_list diff --git a/test/chj-home-expected/--changes/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/_list b/split-patch/test/chj-home-expected/--changes/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/_list similarity index 100% rename from test/chj-home-expected/--changes/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/_list rename to split-patch/test/chj-home-expected/--changes/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/_list diff --git a/test/chj-home-expected/--changes/0115-.bashrc-document-the-fix/0115-.bashrc-document-the-fix-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0115-.bashrc-document-the-fix/0115-.bashrc-document-the-fix-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0115-.bashrc-document-the-fix/0115-.bashrc-document-the-fix-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0115-.bashrc-document-the-fix/0115-.bashrc-document-the-fix-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0115-.bashrc-document-the-fix/_list b/split-patch/test/chj-home-expected/--changes/0115-.bashrc-document-the-fix/_list similarity index 100% rename from test/chj-home-expected/--changes/0115-.bashrc-document-the-fix/_list rename to split-patch/test/chj-home-expected/--changes/0115-.bashrc-document-the-fix/_list diff --git a/test/chj-home-expected/--changes/0116-.bash_profile-finally-remove-ulimit-again/0116-.bash_profile-finally-remove-ulimit-again-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0116-.bash_profile-finally-remove-ulimit-again/0116-.bash_profile-finally-remove-ulimit-again-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0116-.bash_profile-finally-remove-ulimit-again/0116-.bash_profile-finally-remove-ulimit-again-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0116-.bash_profile-finally-remove-ulimit-again/0116-.bash_profile-finally-remove-ulimit-again-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0116-.bash_profile-finally-remove-ulimit-again/_list b/split-patch/test/chj-home-expected/--changes/0116-.bash_profile-finally-remove-ulimit-again/_list similarity index 100% rename from test/chj-home-expected/--changes/0116-.bash_profile-finally-remove-ulimit-again/_list rename to split-patch/test/chj-home-expected/--changes/0116-.bash_profile-finally-remove-ulimit-again/_list diff --git a/test/chj-home-expected/--changes/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/_list b/split-patch/test/chj-home-expected/--changes/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/_list similarity index 100% rename from test/chj-home-expected/--changes/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/_list rename to split-patch/test/chj-home-expected/--changes/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/_list diff --git a/test/chj-home-expected/--changes/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0118-.bashrc-even-nicer/_list b/split-patch/test/chj-home-expected/--changes/0118-.bashrc-even-nicer/_list similarity index 100% rename from test/chj-home-expected/--changes/0118-.bashrc-even-nicer/_list rename to split-patch/test/chj-home-expected/--changes/0118-.bashrc-even-nicer/_list diff --git a/test/chj-home-expected/--changes/0119-.bashrc-go-back-to-red/0119-.bashrc-go-back-to-red-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0119-.bashrc-go-back-to-red/0119-.bashrc-go-back-to-red-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0119-.bashrc-go-back-to-red/0119-.bashrc-go-back-to-red-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0119-.bashrc-go-back-to-red/0119-.bashrc-go-back-to-red-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0119-.bashrc-go-back-to-red/_list b/split-patch/test/chj-home-expected/--changes/0119-.bashrc-go-back-to-red/_list similarity index 100% rename from test/chj-home-expected/--changes/0119-.bashrc-go-back-to-red/_list rename to split-patch/test/chj-home-expected/--changes/0119-.bashrc-go-back-to-red/_list diff --git a/test/chj-home-expected/--changes/0120-Formatting/0120-Formatting-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0120-Formatting/0120-Formatting-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0120-Formatting/0120-Formatting-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0120-Formatting/0120-Formatting-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0120-Formatting/0120-Formatting-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0120-Formatting/0120-Formatting-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0120-Formatting/0120-Formatting-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0120-Formatting/0120-Formatting-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0120-Formatting/_list b/split-patch/test/chj-home-expected/--changes/0120-Formatting/_list similarity index 100% rename from test/chj-home-expected/--changes/0120-Formatting/_list rename to split-patch/test/chj-home-expected/--changes/0120-Formatting/_list diff --git a/test/chj-home-expected/--changes/0121-Abstraction/0121-Abstraction-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0121-Abstraction/0121-Abstraction-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0121-Abstraction/0121-Abstraction-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0121-Abstraction/0121-Abstraction-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0121-Abstraction/0121-Abstraction-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0121-Abstraction/0121-Abstraction-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0121-Abstraction/0121-Abstraction-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0121-Abstraction/0121-Abstraction-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0121-Abstraction/0121-Abstraction-.bashrc-002.patch b/split-patch/test/chj-home-expected/--changes/0121-Abstraction/0121-Abstraction-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0121-Abstraction/0121-Abstraction-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--changes/0121-Abstraction/0121-Abstraction-.bashrc-002.patch diff --git a/test/chj-home-expected/--changes/0121-Abstraction/_list b/split-patch/test/chj-home-expected/--changes/0121-Abstraction/_list similarity index 100% rename from test/chj-home-expected/--changes/0121-Abstraction/_list rename to split-patch/test/chj-home-expected/--changes/0121-Abstraction/_list diff --git a/test/chj-home-expected/--changes/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/_list b/split-patch/test/chj-home-expected/--changes/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/_list similarity index 100% rename from test/chj-home-expected/--changes/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/_list rename to split-patch/test/chj-home-expected/--changes/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/_list diff --git a/test/chj-home-expected/--changes/0123-.chj-home-init-rely-on-.METADATA-v2.options/0123-.chj-home-init-rely-on-.METADATA-v2.options-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0123-.chj-home-init-rely-on-.METADATA-v2.options/0123-.chj-home-init-rely-on-.METADATA-v2.options-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0123-.chj-home-init-rely-on-.METADATA-v2.options/0123-.chj-home-init-rely-on-.METADATA-v2.options-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0123-.chj-home-init-rely-on-.METADATA-v2.options/0123-.chj-home-init-rely-on-.METADATA-v2.options-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0123-.chj-home-init-rely-on-.METADATA-v2.options/_list b/split-patch/test/chj-home-expected/--changes/0123-.chj-home-init-rely-on-.METADATA-v2.options/_list similarity index 100% rename from test/chj-home-expected/--changes/0123-.chj-home-init-rely-on-.METADATA-v2.options/_list rename to split-patch/test/chj-home-expected/--changes/0123-.chj-home-init-rely-on-.METADATA-v2.options/_list diff --git a/test/chj-home-expected/--changes/0124-.chj-home-init-make-.METADATA-v2.ignore-too/0124-.chj-home-init-make-.METADATA-v2.ignore-too-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0124-.chj-home-init-make-.METADATA-v2.ignore-too/0124-.chj-home-init-make-.METADATA-v2.ignore-too-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0124-.chj-home-init-make-.METADATA-v2.ignore-too/0124-.chj-home-init-make-.METADATA-v2.ignore-too-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0124-.chj-home-init-make-.METADATA-v2.ignore-too/0124-.chj-home-init-make-.METADATA-v2.ignore-too-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0124-.chj-home-init-make-.METADATA-v2.ignore-too/_list b/split-patch/test/chj-home-expected/--changes/0124-.chj-home-init-make-.METADATA-v2.ignore-too/_list similarity index 100% rename from test/chj-home-expected/--changes/0124-.chj-home-init-make-.METADATA-v2.ignore-too/_list rename to split-patch/test/chj-home-expected/--changes/0124-.chj-home-init-make-.METADATA-v2.ignore-too/_list diff --git a/test/chj-home-expected/--changes/0125-.xscreensaver/0125-.xscreensaver-.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--changes/0125-.xscreensaver/0125-.xscreensaver-.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0125-.xscreensaver/0125-.xscreensaver-.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--changes/0125-.xscreensaver/0125-.xscreensaver-.xscreensaver-000.patch diff --git a/test/chj-home-expected/--changes/0125-.xscreensaver/_list b/split-patch/test/chj-home-expected/--changes/0125-.xscreensaver/_list similarity index 100% rename from test/chj-home-expected/--changes/0125-.xscreensaver/_list rename to split-patch/test/chj-home-expected/--changes/0125-.xscreensaver/_list diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-000.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-000.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-000.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-001.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-001.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-001.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-002.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-002.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-002.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-003.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-003.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-003.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-004.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-004.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-004.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-004.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-005.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-005.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-005.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-005.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-006.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-006.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-006.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-006.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-007.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-007.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-007.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-007.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-008.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-008.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-008.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-008.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-009.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-009.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-009.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-009.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-010.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-010.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-010.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-010.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-011.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-011.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-011.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-011.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-012.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-012.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-012.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-012.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-013.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-013.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-013.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-013.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-014.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-014.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-014.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-014.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-015.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-015.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-015.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-015.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-016.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-016.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-016.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-016.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-017.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-017.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-017.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-017.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-018.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-018.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-018.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-018.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-019.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-019.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-019.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-019.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-020.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-020.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-020.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-020.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-021.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-021.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-021.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-021.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-022.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-022.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-022.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-022.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-023.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-023.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-023.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-023.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-024.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-024.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-024.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-024.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-025.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-025.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-025.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-025.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-026.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-026.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-026.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-026.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-027.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-027.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-027.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-027.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-028.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-028.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-028.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-028.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-029.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-029.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-029.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-029.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-030.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-030.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-030.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-030.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-031.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-031.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-031.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-031.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-032.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-032.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-032.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-032.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-033.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-033.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-033.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-033.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-034.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-034.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-034.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-034.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-035.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-035.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-035.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-035.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-036.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-036.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-036.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-036.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-037.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-037.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-037.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-037.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-038.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-038.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-038.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-038.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-039.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-039.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-039.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-039.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-040.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-040.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-040.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-040.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-041.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-041.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-041.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-041.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-042.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-042.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-042.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-042.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-043.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-043.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-043.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-043.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-044.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-044.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-044.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-044.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-045.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-045.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-045.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-045.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-046.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-046.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-046.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-046.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-047.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-047.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-047.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-047.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-048.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-048.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-048.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-048.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-049.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-049.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-049.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-049.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-050.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-050.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-050.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-050.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-051.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-051.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-051.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-051.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-052.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-052.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-052.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-052.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-053.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-053.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-053.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-053.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-054.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-054.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-054.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-054.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.xscreensaver-000.patch diff --git a/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/_list b/split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/_list similarity index 100% rename from test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/_list rename to split-patch/test/chj-home-expected/--changes/0126-Move-.xscreensaver-to-.chj-home-again/_list diff --git a/test/chj-home-expected/--changes/0127-Rename/_list b/split-patch/test/chj-home-expected/--changes/0127-Rename/_list similarity index 100% rename from test/chj-home-expected/--changes/0127-Rename/_list rename to split-patch/test/chj-home-expected/--changes/0127-Rename/_list diff --git a/test/chj-home-expected/--changes/0128-init-install-.xscreensaver-if-not-already-exists/0128-init-install-.xscreensaver-if-not-already-exists-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0128-init-install-.xscreensaver-if-not-already-exists/0128-init-install-.xscreensaver-if-not-already-exists-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0128-init-install-.xscreensaver-if-not-already-exists/0128-init-install-.xscreensaver-if-not-already-exists-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0128-init-install-.xscreensaver-if-not-already-exists/0128-init-install-.xscreensaver-if-not-already-exists-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0128-init-install-.xscreensaver-if-not-already-exists/_list b/split-patch/test/chj-home-expected/--changes/0128-init-install-.xscreensaver-if-not-already-exists/_list similarity index 100% rename from test/chj-home-expected/--changes/0128-init-install-.xscreensaver-if-not-already-exists/_list rename to split-patch/test/chj-home-expected/--changes/0128-init-install-.xscreensaver-if-not-already-exists/_list diff --git a/test/chj-home-expected/--changes/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init-001.patch b/split-patch/test/chj-home-expected/--changes/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init-001.patch rename to split-patch/test/chj-home-expected/--changes/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init-001.patch diff --git a/test/chj-home-expected/--changes/0129-init-more-fix-perms/_list b/split-patch/test/chj-home-expected/--changes/0129-init-more-fix-perms/_list similarity index 100% rename from test/chj-home-expected/--changes/0129-init-more-fix-perms/_list rename to split-patch/test/chj-home-expected/--changes/0129-init-more-fix-perms/_list diff --git a/test/chj-home-expected/--changes/0130-.bashrc-add-j-same-as-cj/0130-.bashrc-add-j-same-as-cj-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0130-.bashrc-add-j-same-as-cj/0130-.bashrc-add-j-same-as-cj-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0130-.bashrc-add-j-same-as-cj/0130-.bashrc-add-j-same-as-cj-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0130-.bashrc-add-j-same-as-cj/0130-.bashrc-add-j-same-as-cj-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0130-.bashrc-add-j-same-as-cj/_list b/split-patch/test/chj-home-expected/--changes/0130-.bashrc-add-j-same-as-cj/_list similarity index 100% rename from test/chj-home-expected/--changes/0130-.bashrc-add-j-same-as-cj/_list rename to split-patch/test/chj-home-expected/--changes/0130-.bashrc-add-j-same-as-cj/_list diff --git a/test/chj-home-expected/--changes/0131-.bashrc-add-cgdi/0131-.bashrc-add-cgdi-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0131-.bashrc-add-cgdi/0131-.bashrc-add-cgdi-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0131-.bashrc-add-cgdi/0131-.bashrc-add-cgdi-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0131-.bashrc-add-cgdi/0131-.bashrc-add-cgdi-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0131-.bashrc-add-cgdi/_list b/split-patch/test/chj-home-expected/--changes/0131-.bashrc-add-cgdi/_list similarity index 100% rename from test/chj-home-expected/--changes/0131-.bashrc-add-cgdi/_list rename to split-patch/test/chj-home-expected/--changes/0131-.bashrc-add-cgdi/_list diff --git a/test/chj-home-expected/--changes/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0132-.bashrc-cgdi-fix-proper-error-handling/_list b/split-patch/test/chj-home-expected/--changes/0132-.bashrc-cgdi-fix-proper-error-handling/_list similarity index 100% rename from test/chj-home-expected/--changes/0132-.bashrc-cgdi-fix-proper-error-handling/_list rename to split-patch/test/chj-home-expected/--changes/0132-.bashrc-cgdi-fix-proper-error-handling/_list diff --git a/test/chj-home-expected/--changes/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0133-.bashrc-add-cgd/_list b/split-patch/test/chj-home-expected/--changes/0133-.bashrc-add-cgd/_list similarity index 100% rename from test/chj-home-expected/--changes/0133-.bashrc-add-cgd/_list rename to split-patch/test/chj-home-expected/--changes/0133-.bashrc-add-cgd/_list diff --git a/test/chj-home-expected/--changes/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--changes/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--changes/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-000.patch diff --git a/test/chj-home-expected/--changes/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-001.patch b/split-patch/test/chj-home-expected/--changes/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-001.patch rename to split-patch/test/chj-home-expected/--changes/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-001.patch diff --git a/test/chj-home-expected/--changes/0134-.xscreensaver-blank-and-off-fast/_list b/split-patch/test/chj-home-expected/--changes/0134-.xscreensaver-blank-and-off-fast/_list similarity index 100% rename from test/chj-home-expected/--changes/0134-.xscreensaver-blank-and-off-fast/_list rename to split-patch/test/chj-home-expected/--changes/0134-.xscreensaver-blank-and-off-fast/_list diff --git a/test/chj-home-expected/--changes/0135-Add-cgi-cgii/0135-Add-cgi-cgii-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0135-Add-cgi-cgii/0135-Add-cgi-cgii-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0135-Add-cgi-cgii/0135-Add-cgi-cgii-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0135-Add-cgi-cgii/0135-Add-cgi-cgii-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0135-Add-cgi-cgii/_list b/split-patch/test/chj-home-expected/--changes/0135-Add-cgi-cgii/_list similarity index 100% rename from test/chj-home-expected/--changes/0135-Add-cgi-cgii/_list rename to split-patch/test/chj-home-expected/--changes/0135-Add-cgi-cgii/_list diff --git a/test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-000.patch diff --git a/test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-001.patch b/split-patch/test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-001.patch rename to split-patch/test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-001.patch diff --git a/test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-002.patch b/split-patch/test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-002.patch rename to split-patch/test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-002.patch diff --git a/test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/_list b/split-patch/test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/_list similarity index 100% rename from test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/_list rename to split-patch/test/chj-home-expected/--changes/0136-.xscreensaver-oh-that-was-bad-try-this/_list diff --git a/test/chj-home-expected/--changes/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--changes/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--changes/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-000.patch diff --git a/test/chj-home-expected/--changes/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-001.patch b/split-patch/test/chj-home-expected/--changes/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-001.patch rename to split-patch/test/chj-home-expected/--changes/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-001.patch diff --git a/test/chj-home-expected/--changes/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/_list b/split-patch/test/chj-home-expected/--changes/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/_list similarity index 100% rename from test/chj-home-expected/--changes/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/_list rename to split-patch/test/chj-home-expected/--changes/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/_list diff --git a/test/chj-home-expected/--changes/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--changes/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--changes/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-000.patch diff --git a/test/chj-home-expected/--changes/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-001.patch b/split-patch/test/chj-home-expected/--changes/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-001.patch rename to split-patch/test/chj-home-expected/--changes/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-001.patch diff --git a/test/chj-home-expected/--changes/0138-.xscreensaver-turn-off-dpms/_list b/split-patch/test/chj-home-expected/--changes/0138-.xscreensaver-turn-off-dpms/_list similarity index 100% rename from test/chj-home-expected/--changes/0138-.xscreensaver-turn-off-dpms/_list rename to split-patch/test/chj-home-expected/--changes/0138-.xscreensaver-turn-off-dpms/_list diff --git a/test/chj-home-expected/--changes/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--changes/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--changes/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-000.patch diff --git a/test/chj-home-expected/--changes/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-001.patch b/split-patch/test/chj-home-expected/--changes/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-001.patch rename to split-patch/test/chj-home-expected/--changes/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-001.patch diff --git a/test/chj-home-expected/--changes/0139-.xscreensaver-blank-only/_list b/split-patch/test/chj-home-expected/--changes/0139-.xscreensaver-blank-only/_list similarity index 100% rename from test/chj-home-expected/--changes/0139-.xscreensaver-blank-only/_list rename to split-patch/test/chj-home-expected/--changes/0139-.xscreensaver-blank-only/_list diff --git a/test/chj-home-expected/--changes/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_.gdbinit-000.patch b/split-patch/test/chj-home-expected/--changes/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_.gdbinit-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_.gdbinit-000.patch rename to split-patch/test/chj-home-expected/--changes/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_.gdbinit-000.patch diff --git a/test/chj-home-expected/--changes/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0140-Add-a-default-.gdbinit/_list b/split-patch/test/chj-home-expected/--changes/0140-Add-a-default-.gdbinit/_list similarity index 100% rename from test/chj-home-expected/--changes/0140-Add-a-default-.gdbinit/_list rename to split-patch/test/chj-home-expected/--changes/0140-Add-a-default-.gdbinit/_list diff --git a/test/chj-home-expected/--changes/0141-Set-BROWSER-to-firefox-by-default/0141-Set-BROWSER-to-firefox-by-default-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0141-Set-BROWSER-to-firefox-by-default/0141-Set-BROWSER-to-firefox-by-default-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0141-Set-BROWSER-to-firefox-by-default/0141-Set-BROWSER-to-firefox-by-default-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0141-Set-BROWSER-to-firefox-by-default/0141-Set-BROWSER-to-firefox-by-default-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0141-Set-BROWSER-to-firefox-by-default/_list b/split-patch/test/chj-home-expected/--changes/0141-Set-BROWSER-to-firefox-by-default/_list similarity index 100% rename from test/chj-home-expected/--changes/0141-Set-BROWSER-to-firefox-by-default/_list rename to split-patch/test/chj-home-expected/--changes/0141-Set-BROWSER-to-firefox-by-default/_list diff --git a/test/chj-home-expected/--changes/0142-.bashrc-remove-j-again-not-using-it/0142-.bashrc-remove-j-again-not-using-it-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0142-.bashrc-remove-j-again-not-using-it/0142-.bashrc-remove-j-again-not-using-it-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0142-.bashrc-remove-j-again-not-using-it/0142-.bashrc-remove-j-again-not-using-it-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0142-.bashrc-remove-j-again-not-using-it/0142-.bashrc-remove-j-again-not-using-it-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0142-.bashrc-remove-j-again-not-using-it/_list b/split-patch/test/chj-home-expected/--changes/0142-.bashrc-remove-j-again-not-using-it/_list similarity index 100% rename from test/chj-home-expected/--changes/0142-.bashrc-remove-j-again-not-using-it/_list rename to split-patch/test/chj-home-expected/--changes/0142-.bashrc-remove-j-again-not-using-it/_list diff --git a/test/chj-home-expected/--changes/0143-.bashrc-add-ce/0143-.bashrc-add-ce-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0143-.bashrc-add-ce/0143-.bashrc-add-ce-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0143-.bashrc-add-ce/0143-.bashrc-add-ce-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0143-.bashrc-add-ce/0143-.bashrc-add-ce-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0143-.bashrc-add-ce/_list b/split-patch/test/chj-home-expected/--changes/0143-.bashrc-add-ce/_list similarity index 100% rename from test/chj-home-expected/--changes/0143-.bashrc-add-ce/_list rename to split-patch/test/chj-home-expected/--changes/0143-.bashrc-add-ce/_list diff --git a/test/chj-home-expected/--changes/0144-.bashrc-add-cdnn-cdnnn/0144-.bashrc-add-cdnn-cdnnn-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0144-.bashrc-add-cdnn-cdnnn/0144-.bashrc-add-cdnn-cdnnn-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0144-.bashrc-add-cdnn-cdnnn/0144-.bashrc-add-cdnn-cdnnn-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0144-.bashrc-add-cdnn-cdnnn/0144-.bashrc-add-cdnn-cdnnn-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0144-.bashrc-add-cdnn-cdnnn/_list b/split-patch/test/chj-home-expected/--changes/0144-.bashrc-add-cdnn-cdnnn/_list similarity index 100% rename from test/chj-home-expected/--changes/0144-.bashrc-add-cdnn-cdnnn/_list rename to split-patch/test/chj-home-expected/--changes/0144-.bashrc-add-cdnn-cdnnn/_list diff --git a/test/chj-home-expected/--changes/0145-Change-background-color-for-errors-to-bright-yellow/0145-Change-background-color-for-errors-to-bright-yellow-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0145-Change-background-color-for-errors-to-bright-yellow/0145-Change-background-color-for-errors-to-bright-yellow-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0145-Change-background-color-for-errors-to-bright-yellow/0145-Change-background-color-for-errors-to-bright-yellow-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0145-Change-background-color-for-errors-to-bright-yellow/0145-Change-background-color-for-errors-to-bright-yellow-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0145-Change-background-color-for-errors-to-bright-yellow/_list b/split-patch/test/chj-home-expected/--changes/0145-Change-background-color-for-errors-to-bright-yellow/_list similarity index 100% rename from test/chj-home-expected/--changes/0145-Change-background-color-for-errors-to-bright-yellow/_list rename to split-patch/test/chj-home-expected/--changes/0145-Change-background-color-for-errors-to-bright-yellow/_list diff --git a/test/chj-home-expected/--changes/0146-Background-orange/0146-Background-orange-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0146-Background-orange/0146-Background-orange-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0146-Background-orange/0146-Background-orange-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0146-Background-orange/0146-Background-orange-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0146-Background-orange/_list b/split-patch/test/chj-home-expected/--changes/0146-Background-orange/_list similarity index 100% rename from test/chj-home-expected/--changes/0146-Background-orange/_list rename to split-patch/test/chj-home-expected/--changes/0146-Background-orange/_list diff --git a/test/chj-home-expected/--changes/0147-Revert-Background-orange/0147-Revert-Background-orange-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0147-Revert-Background-orange/0147-Revert-Background-orange-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0147-Revert-Background-orange/0147-Revert-Background-orange-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0147-Revert-Background-orange/0147-Revert-Background-orange-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0147-Revert-Background-orange/_list b/split-patch/test/chj-home-expected/--changes/0147-Revert-Background-orange/_list similarity index 100% rename from test/chj-home-expected/--changes/0147-Revert-Background-orange/_list rename to split-patch/test/chj-home-expected/--changes/0147-Revert-Background-orange/_list diff --git a/test/chj-home-expected/--changes/0148-Change-background-back-to-red/0148-Change-background-back-to-red-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0148-Change-background-back-to-red/0148-Change-background-back-to-red-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0148-Change-background-back-to-red/0148-Change-background-back-to-red-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0148-Change-background-back-to-red/0148-Change-background-back-to-red-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0148-Change-background-back-to-red/_list b/split-patch/test/chj-home-expected/--changes/0148-Change-background-back-to-red/_list similarity index 100% rename from test/chj-home-expected/--changes/0148-Change-background-back-to-red/_list rename to split-patch/test/chj-home-expected/--changes/0148-Change-background-back-to-red/_list diff --git a/test/chj-home-expected/--changes/0149-.bashrc-wg-is-also-provided-by-wireguard-now/0149-.bashrc-wg-is-also-provided-by-wireguard-now-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0149-.bashrc-wg-is-also-provided-by-wireguard-now/0149-.bashrc-wg-is-also-provided-by-wireguard-now-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0149-.bashrc-wg-is-also-provided-by-wireguard-now/0149-.bashrc-wg-is-also-provided-by-wireguard-now-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0149-.bashrc-wg-is-also-provided-by-wireguard-now/0149-.bashrc-wg-is-also-provided-by-wireguard-now-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0149-.bashrc-wg-is-also-provided-by-wireguard-now/_list b/split-patch/test/chj-home-expected/--changes/0149-.bashrc-wg-is-also-provided-by-wireguard-now/_list similarity index 100% rename from test/chj-home-expected/--changes/0149-.bashrc-wg-is-also-provided-by-wireguard-now/_list rename to split-patch/test/chj-home-expected/--changes/0149-.bashrc-wg-is-also-provided-by-wireguard-now/_list diff --git a/test/chj-home-expected/--changes/0150-.bashrc-replace-ad-hoc-code-with-lastdir/0150-.bashrc-replace-ad-hoc-code-with-lastdir-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0150-.bashrc-replace-ad-hoc-code-with-lastdir/0150-.bashrc-replace-ad-hoc-code-with-lastdir-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0150-.bashrc-replace-ad-hoc-code-with-lastdir/0150-.bashrc-replace-ad-hoc-code-with-lastdir-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0150-.bashrc-replace-ad-hoc-code-with-lastdir/0150-.bashrc-replace-ad-hoc-code-with-lastdir-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0150-.bashrc-replace-ad-hoc-code-with-lastdir/_list b/split-patch/test/chj-home-expected/--changes/0150-.bashrc-replace-ad-hoc-code-with-lastdir/_list similarity index 100% rename from test/chj-home-expected/--changes/0150-.bashrc-replace-ad-hoc-code-with-lastdir/_list rename to split-patch/test/chj-home-expected/--changes/0150-.bashrc-replace-ad-hoc-code-with-lastdir/_list diff --git a/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-002.patch b/split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-002.patch diff --git a/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-003.patch b/split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-003.patch rename to split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-003.patch diff --git a/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-004.patch b/split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-004.patch similarity index 100% rename from test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-004.patch rename to split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-004.patch diff --git a/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-005.patch b/split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-005.patch similarity index 100% rename from test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-005.patch rename to split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-005.patch diff --git a/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-006.patch b/split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-006.patch similarity index 100% rename from test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-006.patch rename to split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-006.patch diff --git a/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-007.patch b/split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-007.patch similarity index 100% rename from test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-007.patch rename to split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-007.patch diff --git a/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-008.patch b/split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-008.patch similarity index 100% rename from test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-008.patch rename to split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-008.patch diff --git a/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-009.patch b/split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-009.patch similarity index 100% rename from test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-009.patch rename to split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-009.patch diff --git a/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/_list b/split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/_list similarity index 100% rename from test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/_list rename to split-patch/test/chj-home-expected/--changes/0151-.bashrc-cgd-accept-index-argument/_list diff --git a/test/chj-home-expected/--changes/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/_list b/split-patch/test/chj-home-expected/--changes/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/_list similarity index 100% rename from test/chj-home-expected/--changes/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/_list rename to split-patch/test/chj-home-expected/--changes/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/_list diff --git a/test/chj-home-expected/--changes/0153-.bashrc-add-ct/0153-.bashrc-add-ct-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0153-.bashrc-add-ct/0153-.bashrc-add-ct-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0153-.bashrc-add-ct/0153-.bashrc-add-ct-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0153-.bashrc-add-ct/0153-.bashrc-add-ct-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0153-.bashrc-add-ct/_list b/split-patch/test/chj-home-expected/--changes/0153-.bashrc-add-ct/_list similarity index 100% rename from test/chj-home-expected/--changes/0153-.bashrc-add-ct/_list rename to split-patch/test/chj-home-expected/--changes/0153-.bashrc-add-ct/_list diff --git a/test/chj-home-expected/--changes/0154-.bashrc-update-for-lastitem-from-chj-rustbin/0154-.bashrc-update-for-lastitem-from-chj-rustbin-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0154-.bashrc-update-for-lastitem-from-chj-rustbin/0154-.bashrc-update-for-lastitem-from-chj-rustbin-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0154-.bashrc-update-for-lastitem-from-chj-rustbin/0154-.bashrc-update-for-lastitem-from-chj-rustbin-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0154-.bashrc-update-for-lastitem-from-chj-rustbin/0154-.bashrc-update-for-lastitem-from-chj-rustbin-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0154-.bashrc-update-for-lastitem-from-chj-rustbin/_list b/split-patch/test/chj-home-expected/--changes/0154-.bashrc-update-for-lastitem-from-chj-rustbin/_list similarity index 100% rename from test/chj-home-expected/--changes/0154-.bashrc-update-for-lastitem-from-chj-rustbin/_list rename to split-patch/test/chj-home-expected/--changes/0154-.bashrc-update-for-lastitem-from-chj-rustbin/_list diff --git a/test/chj-home-expected/--changes/0155-.Xresources-finally-make-rxvt-a-bit-larger/0155-.Xresources-finally-make-rxvt-a-bit-larger-.Xresources-000.patch b/split-patch/test/chj-home-expected/--changes/0155-.Xresources-finally-make-rxvt-a-bit-larger/0155-.Xresources-finally-make-rxvt-a-bit-larger-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0155-.Xresources-finally-make-rxvt-a-bit-larger/0155-.Xresources-finally-make-rxvt-a-bit-larger-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--changes/0155-.Xresources-finally-make-rxvt-a-bit-larger/0155-.Xresources-finally-make-rxvt-a-bit-larger-.Xresources-000.patch diff --git a/test/chj-home-expected/--changes/0155-.Xresources-finally-make-rxvt-a-bit-larger/_list b/split-patch/test/chj-home-expected/--changes/0155-.Xresources-finally-make-rxvt-a-bit-larger/_list similarity index 100% rename from test/chj-home-expected/--changes/0155-.Xresources-finally-make-rxvt-a-bit-larger/_list rename to split-patch/test/chj-home-expected/--changes/0155-.Xresources-finally-make-rxvt-a-bit-larger/_list diff --git a/test/chj-home-expected/--changes/0156-.xmodmaprc-change-print-screen-button-back-to-Print/0156-.xmodmaprc-change-print-screen-button-back-to-Print-.xmodmaprc-000.patch b/split-patch/test/chj-home-expected/--changes/0156-.xmodmaprc-change-print-screen-button-back-to-Print/0156-.xmodmaprc-change-print-screen-button-back-to-Print-.xmodmaprc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0156-.xmodmaprc-change-print-screen-button-back-to-Print/0156-.xmodmaprc-change-print-screen-button-back-to-Print-.xmodmaprc-000.patch rename to split-patch/test/chj-home-expected/--changes/0156-.xmodmaprc-change-print-screen-button-back-to-Print/0156-.xmodmaprc-change-print-screen-button-back-to-Print-.xmodmaprc-000.patch diff --git a/test/chj-home-expected/--changes/0156-.xmodmaprc-change-print-screen-button-back-to-Print/_list b/split-patch/test/chj-home-expected/--changes/0156-.xmodmaprc-change-print-screen-button-back-to-Print/_list similarity index 100% rename from test/chj-home-expected/--changes/0156-.xmodmaprc-change-print-screen-button-back-to-Print/_list rename to split-patch/test/chj-home-expected/--changes/0156-.xmodmaprc-change-print-screen-button-back-to-Print/_list diff --git a/test/chj-home-expected/--changes/0157-.bash_profile-add-my-new-key-fingerprint/0157-.bash_profile-add-my-new-key-fingerprint-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0157-.bash_profile-add-my-new-key-fingerprint/0157-.bash_profile-add-my-new-key-fingerprint-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0157-.bash_profile-add-my-new-key-fingerprint/0157-.bash_profile-add-my-new-key-fingerprint-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0157-.bash_profile-add-my-new-key-fingerprint/0157-.bash_profile-add-my-new-key-fingerprint-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0157-.bash_profile-add-my-new-key-fingerprint/_list b/split-patch/test/chj-home-expected/--changes/0157-.bash_profile-add-my-new-key-fingerprint/_list similarity index 100% rename from test/chj-home-expected/--changes/0157-.bash_profile-add-my-new-key-fingerprint/_list rename to split-patch/test/chj-home-expected/--changes/0157-.bash_profile-add-my-new-key-fingerprint/_list diff --git a/test/chj-home-expected/--changes/0158-.chj-home-init-Git-rebase-false/0158-.chj-home-init-Git-rebase-false-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0158-.chj-home-init-Git-rebase-false/0158-.chj-home-init-Git-rebase-false-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0158-.chj-home-init-Git-rebase-false/0158-.chj-home-init-Git-rebase-false-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0158-.chj-home-init-Git-rebase-false/0158-.chj-home-init-Git-rebase-false-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0158-.chj-home-init-Git-rebase-false/_list b/split-patch/test/chj-home-expected/--changes/0158-.chj-home-init-Git-rebase-false/_list similarity index 100% rename from test/chj-home-expected/--changes/0158-.chj-home-init-Git-rebase-false/_list rename to split-patch/test/chj-home-expected/--changes/0158-.chj-home-init-Git-rebase-false/_list diff --git a/test/chj-home-expected/--changes/0159-.gitignore_global-C-development/0159-.gitignore_global-C-development-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--changes/0159-.gitignore_global-C-development/0159-.gitignore_global-C-development-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0159-.gitignore_global-C-development/0159-.gitignore_global-C-development-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--changes/0159-.gitignore_global-C-development/0159-.gitignore_global-C-development-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--changes/0159-.gitignore_global-C-development/_list b/split-patch/test/chj-home-expected/--changes/0159-.gitignore_global-C-development/_list similarity index 100% rename from test/chj-home-expected/--changes/0159-.gitignore_global-C-development/_list rename to split-patch/test/chj-home-expected/--changes/0159-.gitignore_global-C-development/_list diff --git a/test/chj-home-expected/--changes/0160-.bashrc-update-wg-alias/0160-.bashrc-update-wg-alias-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0160-.bashrc-update-wg-alias/0160-.bashrc-update-wg-alias-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0160-.bashrc-update-wg-alias/0160-.bashrc-update-wg-alias-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0160-.bashrc-update-wg-alias/0160-.bashrc-update-wg-alias-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0160-.bashrc-update-wg-alias/_list b/split-patch/test/chj-home-expected/--changes/0160-.bashrc-update-wg-alias/_list similarity index 100% rename from test/chj-home-expected/--changes/0160-.bashrc-update-wg-alias/_list rename to split-patch/test/chj-home-expected/--changes/0160-.bashrc-update-wg-alias/_list diff --git a/test/chj-home-expected/--changes/0161-init-remove-xemacs-setup/0161-init-remove-xemacs-setup-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0161-init-remove-xemacs-setup/0161-init-remove-xemacs-setup-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0161-init-remove-xemacs-setup/0161-init-remove-xemacs-setup-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0161-init-remove-xemacs-setup/0161-init-remove-xemacs-setup-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0161-init-remove-xemacs-setup/_list b/split-patch/test/chj-home-expected/--changes/0161-init-remove-xemacs-setup/_list similarity index 100% rename from test/chj-home-expected/--changes/0161-init-remove-xemacs-setup/_list rename to split-patch/test/chj-home-expected/--changes/0161-init-remove-xemacs-setup/_list diff --git a/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-001.patch b/split-patch/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-001.patch rename to split-patch/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-001.patch diff --git a/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-002.patch b/split-patch/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-002.patch rename to split-patch/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-002.patch diff --git a/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-003.patch b/split-patch/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-003.patch rename to split-patch/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-003.patch diff --git a/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/_list b/split-patch/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/_list similarity index 100% rename from test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/_list rename to split-patch/test/chj-home-expected/--changes/0162-init-clone-chj-emacs-per-user-now/_list diff --git a/test/chj-home-expected/--changes/0163-init-actually-do-need-to-import-the-other-key-as-wel/0163-init-actually-do-need-to-import-the-other-key-as-wel-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0163-init-actually-do-need-to-import-the-other-key-as-wel/0163-init-actually-do-need-to-import-the-other-key-as-wel-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0163-init-actually-do-need-to-import-the-other-key-as-wel/0163-init-actually-do-need-to-import-the-other-key-as-wel-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0163-init-actually-do-need-to-import-the-other-key-as-wel/0163-init-actually-do-need-to-import-the-other-key-as-wel-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0163-init-actually-do-need-to-import-the-other-key-as-wel/_list b/split-patch/test/chj-home-expected/--changes/0163-init-actually-do-need-to-import-the-other-key-as-wel/_list similarity index 100% rename from test/chj-home-expected/--changes/0163-init-actually-do-need-to-import-the-other-key-as-wel/_list rename to split-patch/test/chj-home-expected/--changes/0163-init-actually-do-need-to-import-the-other-key-as-wel/_list diff --git a/test/chj-home-expected/--changes/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/0164-.bash_profile-add-dir-to-newest-clang-to-PATH-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/0164-.bash_profile-add-dir-to-newest-clang-to-PATH-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/0164-.bash_profile-add-dir-to-newest-clang-to-PATH-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/0164-.bash_profile-add-dir-to-newest-clang-to-PATH-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/_list b/split-patch/test/chj-home-expected/--changes/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/_list similarity index 100% rename from test/chj-home-expected/--changes/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/_list rename to split-patch/test/chj-home-expected/--changes/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/_list diff --git a/test/chj-home-expected/--changes/0165-.bash_profile-increase-history-size-even-more/0165-.bash_profile-increase-history-size-even-more-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0165-.bash_profile-increase-history-size-even-more/0165-.bash_profile-increase-history-size-even-more-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0165-.bash_profile-increase-history-size-even-more/0165-.bash_profile-increase-history-size-even-more-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0165-.bash_profile-increase-history-size-even-more/0165-.bash_profile-increase-history-size-even-more-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0165-.bash_profile-increase-history-size-even-more/_list b/split-patch/test/chj-home-expected/--changes/0165-.bash_profile-increase-history-size-even-more/_list similarity index 100% rename from test/chj-home-expected/--changes/0165-.bash_profile-increase-history-size-even-more/_list rename to split-patch/test/chj-home-expected/--changes/0165-.bash_profile-increase-history-size-even-more/_list diff --git a/test/chj-home-expected/--changes/0166-remove-emacs-geometry/0166-remove-emacs-geometry-.Xresources-000.patch b/split-patch/test/chj-home-expected/--changes/0166-remove-emacs-geometry/0166-remove-emacs-geometry-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0166-remove-emacs-geometry/0166-remove-emacs-geometry-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--changes/0166-remove-emacs-geometry/0166-remove-emacs-geometry-.Xresources-000.patch diff --git a/test/chj-home-expected/--changes/0166-remove-emacs-geometry/_list b/split-patch/test/chj-home-expected/--changes/0166-remove-emacs-geometry/_list similarity index 100% rename from test/chj-home-expected/--changes/0166-remove-emacs-geometry/_list rename to split-patch/test/chj-home-expected/--changes/0166-remove-emacs-geometry/_list diff --git a/test/chj-home-expected/--changes/0167-.bashrc-add-ul/0167-.bashrc-add-ul-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0167-.bashrc-add-ul/0167-.bashrc-add-ul-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0167-.bashrc-add-ul/0167-.bashrc-add-ul-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0167-.bashrc-add-ul/0167-.bashrc-add-ul-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0167-.bashrc-add-ul/_list b/split-patch/test/chj-home-expected/--changes/0167-.bashrc-add-ul/_list similarity index 100% rename from test/chj-home-expected/--changes/0167-.bashrc-add-ul/_list rename to split-patch/test/chj-home-expected/--changes/0167-.bashrc-add-ul/_list diff --git a/test/chj-home-expected/--changes/0168-Add-.xmodmaprc_laptopkeyboard/0168-Add-.xmodmaprc_laptopkeyboard-.xmodmaprc_laptopkeyboard-000.patch b/split-patch/test/chj-home-expected/--changes/0168-Add-.xmodmaprc_laptopkeyboard/0168-Add-.xmodmaprc_laptopkeyboard-.xmodmaprc_laptopkeyboard-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0168-Add-.xmodmaprc_laptopkeyboard/0168-Add-.xmodmaprc_laptopkeyboard-.xmodmaprc_laptopkeyboard-000.patch rename to split-patch/test/chj-home-expected/--changes/0168-Add-.xmodmaprc_laptopkeyboard/0168-Add-.xmodmaprc_laptopkeyboard-.xmodmaprc_laptopkeyboard-000.patch diff --git a/test/chj-home-expected/--changes/0168-Add-.xmodmaprc_laptopkeyboard/_list b/split-patch/test/chj-home-expected/--changes/0168-Add-.xmodmaprc_laptopkeyboard/_list similarity index 100% rename from test/chj-home-expected/--changes/0168-Add-.xmodmaprc_laptopkeyboard/_list rename to split-patch/test/chj-home-expected/--changes/0168-Add-.xmodmaprc_laptopkeyboard/_list diff --git a/test/chj-home-expected/--changes/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.festivaldays.tsv-000.patch b/split-patch/test/chj-home-expected/--changes/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.festivaldays.tsv-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.festivaldays.tsv-000.patch rename to split-patch/test/chj-home-expected/--changes/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.festivaldays.tsv-000.patch diff --git a/test/chj-home-expected/--changes/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.holidays.tsv-000.patch b/split-patch/test/chj-home-expected/--changes/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.holidays.tsv-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.holidays.tsv-000.patch rename to split-patch/test/chj-home-expected/--changes/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.holidays.tsv-000.patch diff --git a/test/chj-home-expected/--changes/0169-Add-holidays-in-Switzerland/_list b/split-patch/test/chj-home-expected/--changes/0169-Add-holidays-in-Switzerland/_list similarity index 100% rename from test/chj-home-expected/--changes/0169-Add-holidays-in-Switzerland/_list rename to split-patch/test/chj-home-expected/--changes/0169-Add-holidays-in-Switzerland/_list diff --git a/test/chj-home-expected/--changes/0170-.holidays.tsv-english-Basel/0170-.holidays.tsv-english-Basel-.holidays.tsv-000.patch b/split-patch/test/chj-home-expected/--changes/0170-.holidays.tsv-english-Basel/0170-.holidays.tsv-english-Basel-.holidays.tsv-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0170-.holidays.tsv-english-Basel/0170-.holidays.tsv-english-Basel-.holidays.tsv-000.patch rename to split-patch/test/chj-home-expected/--changes/0170-.holidays.tsv-english-Basel/0170-.holidays.tsv-english-Basel-.holidays.tsv-000.patch diff --git a/test/chj-home-expected/--changes/0170-.holidays.tsv-english-Basel/_list b/split-patch/test/chj-home-expected/--changes/0170-.holidays.tsv-english-Basel/_list similarity index 100% rename from test/chj-home-expected/--changes/0170-.holidays.tsv-english-Basel/_list rename to split-patch/test/chj-home-expected/--changes/0170-.holidays.tsv-english-Basel/_list diff --git a/test/chj-home-expected/--changes/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-001.patch b/split-patch/test/chj-home-expected/--changes/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-001.patch rename to split-patch/test/chj-home-expected/--changes/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-001.patch diff --git a/test/chj-home-expected/--changes/0171-init-import-gpg-keys-first/_list b/split-patch/test/chj-home-expected/--changes/0171-init-import-gpg-keys-first/_list similarity index 100% rename from test/chj-home-expected/--changes/0171-init-import-gpg-keys-first/_list rename to split-patch/test/chj-home-expected/--changes/0171-init-import-gpg-keys-first/_list diff --git a/test/chj-home-expected/--changes/0172-init-yes-mod-user-imports-the-keys-already/0172-init-yes-mod-user-imports-the-keys-already-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0172-init-yes-mod-user-imports-the-keys-already/0172-init-yes-mod-user-imports-the-keys-already-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0172-init-yes-mod-user-imports-the-keys-already/0172-init-yes-mod-user-imports-the-keys-already-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0172-init-yes-mod-user-imports-the-keys-already/0172-init-yes-mod-user-imports-the-keys-already-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0172-init-yes-mod-user-imports-the-keys-already/_list b/split-patch/test/chj-home-expected/--changes/0172-init-yes-mod-user-imports-the-keys-already/_list similarity index 100% rename from test/chj-home-expected/--changes/0172-init-yes-mod-user-imports-the-keys-already/_list rename to split-patch/test/chj-home-expected/--changes/0172-init-yes-mod-user-imports-the-keys-already/_list diff --git a/test/chj-home-expected/--changes/0173-.gitignore_global-ignore-.cache/0173-.gitignore_global-ignore-.cache-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--changes/0173-.gitignore_global-ignore-.cache/0173-.gitignore_global-ignore-.cache-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0173-.gitignore_global-ignore-.cache/0173-.gitignore_global-ignore-.cache-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--changes/0173-.gitignore_global-ignore-.cache/0173-.gitignore_global-ignore-.cache-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--changes/0173-.gitignore_global-ignore-.cache/_list b/split-patch/test/chj-home-expected/--changes/0173-.gitignore_global-ignore-.cache/_list similarity index 100% rename from test/chj-home-expected/--changes/0173-.gitignore_global-ignore-.cache/_list rename to split-patch/test/chj-home-expected/--changes/0173-.gitignore_global-ignore-.cache/_list diff --git a/test/chj-home-expected/--changes/0174-Prioritize-my-mt/0174-Prioritize-my-mt-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0174-Prioritize-my-mt/0174-Prioritize-my-mt-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0174-Prioritize-my-mt/0174-Prioritize-my-mt-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0174-Prioritize-my-mt/0174-Prioritize-my-mt-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0174-Prioritize-my-mt/_list b/split-patch/test/chj-home-expected/--changes/0174-Prioritize-my-mt/_list similarity index 100% rename from test/chj-home-expected/--changes/0174-Prioritize-my-mt/_list rename to split-patch/test/chj-home-expected/--changes/0174-Prioritize-my-mt/_list diff --git a/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-000.patch b/split-patch/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-000.patch rename to split-patch/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-000.patch diff --git a/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-001.patch b/split-patch/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-001.patch rename to split-patch/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-001.patch diff --git a/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-002.patch b/split-patch/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-002.patch rename to split-patch/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-002.patch diff --git a/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-003.patch b/split-patch/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-003.patch rename to split-patch/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-003.patch diff --git a/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-004.patch b/split-patch/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-004.patch similarity index 100% rename from test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-004.patch rename to split-patch/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-004.patch diff --git a/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-005.patch b/split-patch/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-005.patch similarity index 100% rename from test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-005.patch rename to split-patch/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-005.patch diff --git a/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/_list b/split-patch/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/_list similarity index 100% rename from test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/_list rename to split-patch/test/chj-home-expected/--changes/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/_list diff --git a/test/chj-home-expected/--changes/0176-.bashrc-add-cdat/0176-.bashrc-add-cdat-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0176-.bashrc-add-cdat/0176-.bashrc-add-cdat-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0176-.bashrc-add-cdat/0176-.bashrc-add-cdat-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0176-.bashrc-add-cdat/0176-.bashrc-add-cdat-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0176-.bashrc-add-cdat/_list b/split-patch/test/chj-home-expected/--changes/0176-.bashrc-add-cdat/_list similarity index 100% rename from test/chj-home-expected/--changes/0176-.bashrc-add-cdat/_list rename to split-patch/test/chj-home-expected/--changes/0176-.bashrc-add-cdat/_list diff --git a/test/chj-home-expected/--changes/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--changes/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--changes/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--changes/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/_list b/split-patch/test/chj-home-expected/--changes/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/_list similarity index 100% rename from test/chj-home-expected/--changes/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/_list rename to split-patch/test/chj-home-expected/--changes/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/_list diff --git a/test/chj-home-expected/--changes/0178-.bashrc-cdat-pass-arguments-to-dat/0178-.bashrc-cdat-pass-arguments-to-dat-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0178-.bashrc-cdat-pass-arguments-to-dat/0178-.bashrc-cdat-pass-arguments-to-dat-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0178-.bashrc-cdat-pass-arguments-to-dat/0178-.bashrc-cdat-pass-arguments-to-dat-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0178-.bashrc-cdat-pass-arguments-to-dat/0178-.bashrc-cdat-pass-arguments-to-dat-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0178-.bashrc-cdat-pass-arguments-to-dat/_list b/split-patch/test/chj-home-expected/--changes/0178-.bashrc-cdat-pass-arguments-to-dat/_list similarity index 100% rename from test/chj-home-expected/--changes/0178-.bashrc-cdat-pass-arguments-to-dat/_list rename to split-patch/test/chj-home-expected/--changes/0178-.bashrc-cdat-pass-arguments-to-dat/_list diff --git a/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-002.patch b/split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-002.patch diff --git a/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-003.patch b/split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-003.patch rename to split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-003.patch diff --git a/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-004.patch b/split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-004.patch similarity index 100% rename from test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-004.patch rename to split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-004.patch diff --git a/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-005.patch b/split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-005.patch similarity index 100% rename from test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-005.patch rename to split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-005.patch diff --git a/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-006.patch b/split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-006.patch similarity index 100% rename from test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-006.patch rename to split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-006.patch diff --git a/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-007.patch b/split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-007.patch similarity index 100% rename from test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-007.patch rename to split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-007.patch diff --git a/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/_list b/split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/_list similarity index 100% rename from test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/_list rename to split-patch/test/chj-home-expected/--changes/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/_list diff --git a/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-001.patch b/split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-001.patch diff --git a/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-002.patch b/split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-002.patch diff --git a/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-003.patch b/split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-003.patch similarity index 100% rename from test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-003.patch rename to split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-003.patch diff --git a/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-004.patch b/split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-004.patch similarity index 100% rename from test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-004.patch rename to split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-004.patch diff --git a/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-005.patch b/split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-005.patch similarity index 100% rename from test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-005.patch rename to split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-005.patch diff --git a/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-006.patch b/split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-006.patch similarity index 100% rename from test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-006.patch rename to split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-006.patch diff --git a/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-007.patch b/split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-007.patch similarity index 100% rename from test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-007.patch rename to split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-007.patch diff --git a/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-008.patch b/split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-008.patch similarity index 100% rename from test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-008.patch rename to split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-008.patch diff --git a/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-009.patch b/split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-009.patch similarity index 100% rename from test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-009.patch rename to split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-009.patch diff --git a/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-010.patch b/split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-010.patch similarity index 100% rename from test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-010.patch rename to split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-010.patch diff --git a/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-011.patch b/split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-011.patch similarity index 100% rename from test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-011.patch rename to split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-011.patch diff --git a/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-012.patch b/split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-012.patch similarity index 100% rename from test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-012.patch rename to split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-012.patch diff --git a/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/_list b/split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/_list similarity index 100% rename from test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/_list rename to split-patch/test/chj-home-expected/--changes/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/_list diff --git a/test/chj-home-expected/--changes/0181-.bashrc-finally-remove-df-wrapper/0181-.bashrc-finally-remove-df-wrapper-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0181-.bashrc-finally-remove-df-wrapper/0181-.bashrc-finally-remove-df-wrapper-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0181-.bashrc-finally-remove-df-wrapper/0181-.bashrc-finally-remove-df-wrapper-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0181-.bashrc-finally-remove-df-wrapper/0181-.bashrc-finally-remove-df-wrapper-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0181-.bashrc-finally-remove-df-wrapper/_list b/split-patch/test/chj-home-expected/--changes/0181-.bashrc-finally-remove-df-wrapper/_list similarity index 100% rename from test/chj-home-expected/--changes/0181-.bashrc-finally-remove-df-wrapper/_list rename to split-patch/test/chj-home-expected/--changes/0181-.bashrc-finally-remove-df-wrapper/_list diff --git a/test/chj-home-expected/--changes/0182-.chj-home-init-follow-BROWSER-env-var-protocol/0182-.chj-home-init-follow-BROWSER-env-var-protocol-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0182-.chj-home-init-follow-BROWSER-env-var-protocol/0182-.chj-home-init-follow-BROWSER-env-var-protocol-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0182-.chj-home-init-follow-BROWSER-env-var-protocol/0182-.chj-home-init-follow-BROWSER-env-var-protocol-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0182-.chj-home-init-follow-BROWSER-env-var-protocol/0182-.chj-home-init-follow-BROWSER-env-var-protocol-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0182-.chj-home-init-follow-BROWSER-env-var-protocol/_list b/split-patch/test/chj-home-expected/--changes/0182-.chj-home-init-follow-BROWSER-env-var-protocol/_list similarity index 100% rename from test/chj-home-expected/--changes/0182-.chj-home-init-follow-BROWSER-env-var-protocol/_list rename to split-patch/test/chj-home-expected/--changes/0182-.chj-home-init-follow-BROWSER-env-var-protocol/_list diff --git a/test/chj-home-expected/--changes/0183-.chj-home-init-use-ew-as-editor/0183-.chj-home-init-use-ew-as-editor-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--changes/0183-.chj-home-init-use-ew-as-editor/0183-.chj-home-init-use-ew-as-editor-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0183-.chj-home-init-use-ew-as-editor/0183-.chj-home-init-use-ew-as-editor-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--changes/0183-.chj-home-init-use-ew-as-editor/0183-.chj-home-init-use-ew-as-editor-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--changes/0183-.chj-home-init-use-ew-as-editor/_list b/split-patch/test/chj-home-expected/--changes/0183-.chj-home-init-use-ew-as-editor/_list similarity index 100% rename from test/chj-home-expected/--changes/0183-.chj-home-init-use-ew-as-editor/_list rename to split-patch/test/chj-home-expected/--changes/0183-.chj-home-init-use-ew-as-editor/_list diff --git a/test/chj-home-expected/--changes/0184-.bashrc-add-cdgit/0184-.bashrc-add-cdgit-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0184-.bashrc-add-cdgit/0184-.bashrc-add-cdgit-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0184-.bashrc-add-cdgit/0184-.bashrc-add-cdgit-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0184-.bashrc-add-cdgit/0184-.bashrc-add-cdgit-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0184-.bashrc-add-cdgit/_list b/split-patch/test/chj-home-expected/--changes/0184-.bashrc-add-cdgit/_list similarity index 100% rename from test/chj-home-expected/--changes/0184-.bashrc-add-cdgit/_list rename to split-patch/test/chj-home-expected/--changes/0184-.bashrc-add-cdgit/_list diff --git a/test/chj-home-expected/--changes/0185-.bash_profile-need-to-set-umask-now/0185-.bash_profile-need-to-set-umask-now-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--changes/0185-.bash_profile-need-to-set-umask-now/0185-.bash_profile-need-to-set-umask-now-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0185-.bash_profile-need-to-set-umask-now/0185-.bash_profile-need-to-set-umask-now-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--changes/0185-.bash_profile-need-to-set-umask-now/0185-.bash_profile-need-to-set-umask-now-.bash_profile-000.patch diff --git a/test/chj-home-expected/--changes/0185-.bash_profile-need-to-set-umask-now/_list b/split-patch/test/chj-home-expected/--changes/0185-.bash_profile-need-to-set-umask-now/_list similarity index 100% rename from test/chj-home-expected/--changes/0185-.bash_profile-need-to-set-umask-now/_list rename to split-patch/test/chj-home-expected/--changes/0185-.bash_profile-need-to-set-umask-now/_list diff --git a/test/chj-home-expected/--changes/0186-.gitignore_global-ignore-.cj-cargolock/0186-.gitignore_global-ignore-.cj-cargolock-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--changes/0186-.gitignore_global-ignore-.cj-cargolock/0186-.gitignore_global-ignore-.cj-cargolock-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0186-.gitignore_global-ignore-.cj-cargolock/0186-.gitignore_global-ignore-.cj-cargolock-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--changes/0186-.gitignore_global-ignore-.cj-cargolock/0186-.gitignore_global-ignore-.cj-cargolock-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--changes/0186-.gitignore_global-ignore-.cj-cargolock/_list b/split-patch/test/chj-home-expected/--changes/0186-.gitignore_global-ignore-.cj-cargolock/_list similarity index 100% rename from test/chj-home-expected/--changes/0186-.gitignore_global-ignore-.cj-cargolock/_list rename to split-patch/test/chj-home-expected/--changes/0186-.gitignore_global-ignore-.cj-cargolock/_list diff --git a/test/chj-home-expected/--changes/0187-.gitignore_global-ignore-__pycache__/0187-.gitignore_global-ignore-__pycache__-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--changes/0187-.gitignore_global-ignore-__pycache__/0187-.gitignore_global-ignore-__pycache__-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0187-.gitignore_global-ignore-__pycache__/0187-.gitignore_global-ignore-__pycache__-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--changes/0187-.gitignore_global-ignore-__pycache__/0187-.gitignore_global-ignore-__pycache__-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--changes/0187-.gitignore_global-ignore-__pycache__/_list b/split-patch/test/chj-home-expected/--changes/0187-.gitignore_global-ignore-__pycache__/_list similarity index 100% rename from test/chj-home-expected/--changes/0187-.gitignore_global-ignore-__pycache__/_list rename to split-patch/test/chj-home-expected/--changes/0187-.gitignore_global-ignore-__pycache__/_list diff --git a/test/chj-home-expected/--changes/0188-.bashrc-add-cdnnnn-and-cdnnnnn/0188-.bashrc-add-cdnnnn-and-cdnnnnn-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0188-.bashrc-add-cdnnnn-and-cdnnnnn/0188-.bashrc-add-cdnnnn-and-cdnnnnn-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0188-.bashrc-add-cdnnnn-and-cdnnnnn/0188-.bashrc-add-cdnnnn-and-cdnnnnn-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0188-.bashrc-add-cdnnnn-and-cdnnnnn/0188-.bashrc-add-cdnnnn-and-cdnnnnn-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0188-.bashrc-add-cdnnnn-and-cdnnnnn/_list b/split-patch/test/chj-home-expected/--changes/0188-.bashrc-add-cdnnnn-and-cdnnnnn/_list similarity index 100% rename from test/chj-home-expected/--changes/0188-.bashrc-add-cdnnnn-and-cdnnnnn/_list rename to split-patch/test/chj-home-expected/--changes/0188-.bashrc-add-cdnnnn-and-cdnnnnn/_list diff --git a/test/chj-home-expected/--changes/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/_list b/split-patch/test/chj-home-expected/--changes/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/_list similarity index 100% rename from test/chj-home-expected/--changes/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/_list rename to split-patch/test/chj-home-expected/--changes/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/_list diff --git a/test/chj-home-expected/--changes/0190-.bashrc-update-color-detection/0190-.bashrc-update-color-detection-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0190-.bashrc-update-color-detection/0190-.bashrc-update-color-detection-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0190-.bashrc-update-color-detection/0190-.bashrc-update-color-detection-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0190-.bashrc-update-color-detection/0190-.bashrc-update-color-detection-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0190-.bashrc-update-color-detection/_list b/split-patch/test/chj-home-expected/--changes/0190-.bashrc-update-color-detection/_list similarity index 100% rename from test/chj-home-expected/--changes/0190-.bashrc-update-color-detection/_list rename to split-patch/test/chj-home-expected/--changes/0190-.bashrc-update-color-detection/_list diff --git a/test/chj-home-expected/--changes/0191-.bashrc-add-lft/0191-.bashrc-add-lft-.bashrc-000.patch b/split-patch/test/chj-home-expected/--changes/0191-.bashrc-add-lft/0191-.bashrc-add-lft-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--changes/0191-.bashrc-add-lft/0191-.bashrc-add-lft-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--changes/0191-.bashrc-add-lft/0191-.bashrc-add-lft-.bashrc-000.patch diff --git a/test/chj-home-expected/--changes/0191-.bashrc-add-lft/_list b/split-patch/test/chj-home-expected/--changes/0191-.bashrc-add-lft/_list similarity index 100% rename from test/chj-home-expected/--changes/0191-.bashrc-add-lft/_list rename to split-patch/test/chj-home-expected/--changes/0191-.bashrc-add-lft/_list diff --git a/test/chj-home-expected/--hunks/0001-move-lt-to-chj-bin/0001-move-lt-to-chj-bin-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0001-move-lt-to-chj-bin/0001-move-lt-to-chj-bin-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0001-move-lt-to-chj-bin/0001-move-lt-to-chj-bin-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0001-move-lt-to-chj-bin/0001-move-lt-to-chj-bin-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0001-move-lt-to-chj-bin/_list b/split-patch/test/chj-home-expected/--hunks/0001-move-lt-to-chj-bin/_list similarity index 100% rename from test/chj-home-expected/--hunks/0001-move-lt-to-chj-bin/_list rename to split-patch/test/chj-home-expected/--hunks/0001-move-lt-to-chj-bin/_list diff --git a/test/chj-home-expected/--hunks/0002-ignore-.xhtml/0002-ignore-.xhtml-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--hunks/0002-ignore-.xhtml/0002-ignore-.xhtml-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0002-ignore-.xhtml/0002-ignore-.xhtml-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--hunks/0002-ignore-.xhtml/0002-ignore-.xhtml-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--hunks/0002-ignore-.xhtml/_list b/split-patch/test/chj-home-expected/--hunks/0002-ignore-.xhtml/_list similarity index 100% rename from test/chj-home-expected/--hunks/0002-ignore-.xhtml/_list rename to split-patch/test/chj-home-expected/--hunks/0002-ignore-.xhtml/_list diff --git a/test/chj-home-expected/--hunks/0003-ignore-nohup.out/0003-ignore-nohup.out-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--hunks/0003-ignore-nohup.out/0003-ignore-nohup.out-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0003-ignore-nohup.out/0003-ignore-nohup.out-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--hunks/0003-ignore-nohup.out/0003-ignore-nohup.out-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--hunks/0003-ignore-nohup.out/_list b/split-patch/test/chj-home-expected/--hunks/0003-ignore-nohup.out/_list similarity index 100% rename from test/chj-home-expected/--hunks/0003-ignore-nohup.out/_list rename to split-patch/test/chj-home-expected/--hunks/0003-ignore-nohup.out/_list diff --git a/test/chj-home-expected/--hunks/0004-git-wanted-this/0004-git-wanted-this-.gitconfig-000.patch b/split-patch/test/chj-home-expected/--hunks/0004-git-wanted-this/0004-git-wanted-this-.gitconfig-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0004-git-wanted-this/0004-git-wanted-this-.gitconfig-000.patch rename to split-patch/test/chj-home-expected/--hunks/0004-git-wanted-this/0004-git-wanted-this-.gitconfig-000.patch diff --git a/test/chj-home-expected/--hunks/0004-git-wanted-this/_list b/split-patch/test/chj-home-expected/--hunks/0004-git-wanted-this/_list similarity index 100% rename from test/chj-home-expected/--hunks/0004-git-wanted-this/_list rename to split-patch/test/chj-home-expected/--hunks/0004-git-wanted-this/_list diff --git a/test/chj-home-expected/--hunks/0005-ignore-.markdownmake.lck/0005-ignore-.markdownmake.lck-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--hunks/0005-ignore-.markdownmake.lck/0005-ignore-.markdownmake.lck-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0005-ignore-.markdownmake.lck/0005-ignore-.markdownmake.lck-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--hunks/0005-ignore-.markdownmake.lck/0005-ignore-.markdownmake.lck-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--hunks/0005-ignore-.markdownmake.lck/_list b/split-patch/test/chj-home-expected/--hunks/0005-ignore-.markdownmake.lck/_list similarity index 100% rename from test/chj-home-expected/--hunks/0005-ignore-.markdownmake.lck/_list rename to split-patch/test/chj-home-expected/--hunks/0005-ignore-.markdownmake.lck/_list diff --git a/test/chj-home-expected/--hunks/0006-UK-locale/0006-UK-locale-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0006-UK-locale/0006-UK-locale-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0006-UK-locale/0006-UK-locale-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0006-UK-locale/0006-UK-locale-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0006-UK-locale/_list b/split-patch/test/chj-home-expected/--hunks/0006-UK-locale/_list similarity index 100% rename from test/chj-home-expected/--hunks/0006-UK-locale/_list rename to split-patch/test/chj-home-expected/--hunks/0006-UK-locale/_list diff --git a/test/chj-home-expected/--hunks/0007-obsolete/0007-obsolete-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0007-obsolete/0007-obsolete-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0007-obsolete/0007-obsolete-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0007-obsolete/0007-obsolete-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0007-obsolete/_list b/split-patch/test/chj-home-expected/--hunks/0007-obsolete/_list similarity index 100% rename from test/chj-home-expected/--hunks/0007-obsolete/_list rename to split-patch/test/chj-home-expected/--hunks/0007-obsolete/_list diff --git a/test/chj-home-expected/--hunks/0008-make-windows-key-Alt_L/0008-make-windows-key-Alt_L-.xmodmaprc-000.patch b/split-patch/test/chj-home-expected/--hunks/0008-make-windows-key-Alt_L/0008-make-windows-key-Alt_L-.xmodmaprc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0008-make-windows-key-Alt_L/0008-make-windows-key-Alt_L-.xmodmaprc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0008-make-windows-key-Alt_L/0008-make-windows-key-Alt_L-.xmodmaprc-000.patch diff --git a/test/chj-home-expected/--hunks/0008-make-windows-key-Alt_L/_list b/split-patch/test/chj-home-expected/--hunks/0008-make-windows-key-Alt_L/_list similarity index 100% rename from test/chj-home-expected/--hunks/0008-make-windows-key-Alt_L/_list rename to split-patch/test/chj-home-expected/--hunks/0008-make-windows-key-Alt_L/_list diff --git a/test/chj-home-expected/--hunks/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-000.patch b/split-patch/test/chj-home-expected/--hunks/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--hunks/0009-update-emacs-geometry-remove-ancient-entries/0009-update-emacs-geometry-remove-ancient-entries-.Xresources-000.patch diff --git a/test/chj-home-expected/--hunks/0009-update-emacs-geometry-remove-ancient-entries/_list b/split-patch/test/chj-home-expected/--hunks/0009-update-emacs-geometry-remove-ancient-entries/_list similarity index 100% rename from test/chj-home-expected/--hunks/0009-update-emacs-geometry-remove-ancient-entries/_list rename to split-patch/test/chj-home-expected/--hunks/0009-update-emacs-geometry-remove-ancient-entries/_list diff --git a/test/chj-home-expected/--hunks/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources-000.patch b/split-patch/test/chj-home-expected/--hunks/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--hunks/0010-remove-more-ancient-entries/0010-remove-more-ancient-entries-.Xresources-000.patch diff --git a/test/chj-home-expected/--hunks/0010-remove-more-ancient-entries/_list b/split-patch/test/chj-home-expected/--hunks/0010-remove-more-ancient-entries/_list similarity index 100% rename from test/chj-home-expected/--hunks/0010-remove-more-ancient-entries/_list rename to split-patch/test/chj-home-expected/--hunks/0010-remove-more-ancient-entries/_list diff --git a/test/chj-home-expected/--hunks/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources-000.patch b/split-patch/test/chj-home-expected/--hunks/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--hunks/0011-remove-more-old-entries-apparently-unused/0011-remove-more-old-entries-apparently-unused-.Xresources-000.patch diff --git a/test/chj-home-expected/--hunks/0011-remove-more-old-entries-apparently-unused/_list b/split-patch/test/chj-home-expected/--hunks/0011-remove-more-old-entries-apparently-unused/_list similarity index 100% rename from test/chj-home-expected/--hunks/0011-remove-more-old-entries-apparently-unused/_list rename to split-patch/test/chj-home-expected/--hunks/0011-remove-more-old-entries-apparently-unused/_list diff --git a/test/chj-home-expected/--hunks/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-002.patch b/split-patch/test/chj-home-expected/--hunks/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--hunks/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--hunks/0012-don-t-use-aliases/0012-don-t-use-aliases-.bashrc-002.patch diff --git a/test/chj-home-expected/--hunks/0012-don-t-use-aliases/_list b/split-patch/test/chj-home-expected/--hunks/0012-don-t-use-aliases/_list similarity index 100% rename from test/chj-home-expected/--hunks/0012-don-t-use-aliases/_list rename to split-patch/test/chj-home-expected/--hunks/0012-don-t-use-aliases/_list diff --git a/test/chj-home-expected/--hunks/0013-cleanup/0013-cleanup-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0013-cleanup/0013-cleanup-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0013-cleanup/0013-cleanup-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0013-cleanup/0013-cleanup-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0013-cleanup/_list b/split-patch/test/chj-home-expected/--hunks/0013-cleanup/_list similarity index 100% rename from test/chj-home-expected/--hunks/0013-cleanup/_list rename to split-patch/test/chj-home-expected/--hunks/0013-cleanup/_list diff --git a/test/chj-home-expected/--hunks/0014-cleanup/0014-cleanup-.xmodmaprc_off-000.patch b/split-patch/test/chj-home-expected/--hunks/0014-cleanup/0014-cleanup-.xmodmaprc_off-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0014-cleanup/0014-cleanup-.xmodmaprc_off-000.patch rename to split-patch/test/chj-home-expected/--hunks/0014-cleanup/0014-cleanup-.xmodmaprc_off-000.patch diff --git a/test/chj-home-expected/--hunks/0014-cleanup/_list b/split-patch/test/chj-home-expected/--hunks/0014-cleanup/_list similarity index 100% rename from test/chj-home-expected/--hunks/0014-cleanup/_list rename to split-patch/test/chj-home-expected/--hunks/0014-cleanup/_list diff --git a/test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d-000.patch b/split-patch/test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d-000.patch rename to split-patch/test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d-000.patch diff --git a/test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode-tests.el-000.patch b/split-patch/test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode-tests.el-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode-tests.el-000.patch rename to split-patch/test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode-tests.el-000.patch diff --git a/test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode.el-000.patch b/split-patch/test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode.el-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode.el-000.patch rename to split-patch/test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/0015-use-.emacs.d-from-chj-emacs-.emacs.d_julia-mode.el-000.patch diff --git a/test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/_list b/split-patch/test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/_list similarity index 100% rename from test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/_list rename to split-patch/test/chj-home-expected/--hunks/0015-use-.emacs.d-from-chj-emacs/_list diff --git a/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs-000.patch b/split-patch/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs-000.patch rename to split-patch/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs-000.patch diff --git a/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.d-000.patch b/split-patch/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.d-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.d-000.patch rename to split-patch/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.emacs.d-000.patch diff --git a/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.xemacs_init.el-000.patch b/split-patch/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.xemacs_init.el-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.xemacs_init.el-000.patch rename to split-patch/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-.xemacs_init.el-000.patch diff --git a/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-home-init-000.patch b/split-patch/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-home-init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/0016-replace-external-symlinks-with-a-script-home-init-000.patch diff --git a/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/_list b/split-patch/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/_list similarity index 100% rename from test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/_list rename to split-patch/test/chj-home-expected/--hunks/0016-replace-external-symlinks-with-a-script/_list diff --git a/test/chj-home-expected/--hunks/0017-home-init-run-lesskey/0017-home-init-run-lesskey-home-init-000.patch b/split-patch/test/chj-home-expected/--hunks/0017-home-init-run-lesskey/0017-home-init-run-lesskey-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0017-home-init-run-lesskey/0017-home-init-run-lesskey-home-init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0017-home-init-run-lesskey/0017-home-init-run-lesskey-home-init-000.patch diff --git a/test/chj-home-expected/--hunks/0017-home-init-run-lesskey/_list b/split-patch/test/chj-home-expected/--hunks/0017-home-init-run-lesskey/_list similarity index 100% rename from test/chj-home-expected/--hunks/0017-home-init-run-lesskey/_list rename to split-patch/test/chj-home-expected/--hunks/0017-home-init-run-lesskey/_list diff --git a/test/chj-home-expected/--hunks/0018-fix-don-t-use-aliases/0018-fix-don-t-use-aliases-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0018-fix-don-t-use-aliases/0018-fix-don-t-use-aliases-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0018-fix-don-t-use-aliases/0018-fix-don-t-use-aliases-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0018-fix-don-t-use-aliases/0018-fix-don-t-use-aliases-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0018-fix-don-t-use-aliases/_list b/split-patch/test/chj-home-expected/--hunks/0018-fix-don-t-use-aliases/_list similarity index 100% rename from test/chj-home-expected/--hunks/0018-fix-don-t-use-aliases/_list rename to split-patch/test/chj-home-expected/--hunks/0018-fix-don-t-use-aliases/_list diff --git a/test/chj-home-expected/--hunks/0019-home-init-fixes/0019-home-init-fixes-home-init-000.patch b/split-patch/test/chj-home-expected/--hunks/0019-home-init-fixes/0019-home-init-fixes-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0019-home-init-fixes/0019-home-init-fixes-home-init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0019-home-init-fixes/0019-home-init-fixes-home-init-000.patch diff --git a/test/chj-home-expected/--hunks/0019-home-init-fixes/_list b/split-patch/test/chj-home-expected/--hunks/0019-home-init-fixes/_list similarity index 100% rename from test/chj-home-expected/--hunks/0019-home-init-fixes/_list rename to split-patch/test/chj-home-expected/--hunks/0019-home-init-fixes/_list diff --git a/test/chj-home-expected/--hunks/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0020-clean-up-PATH/0020-clean-up-PATH-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0020-clean-up-PATH/_list b/split-patch/test/chj-home-expected/--hunks/0020-clean-up-PATH/_list similarity index 100% rename from test/chj-home-expected/--hunks/0020-clean-up-PATH/_list rename to split-patch/test/chj-home-expected/--hunks/0020-clean-up-PATH/_list diff --git a/test/chj-home-expected/--hunks/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-001.patch b/split-patch/test/chj-home-expected/--hunks/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-001.patch rename to split-patch/test/chj-home-expected/--hunks/0021-load-.bashrc-last/0021-load-.bashrc-last-.bash_profile-001.patch diff --git a/test/chj-home-expected/--hunks/0021-load-.bashrc-last/_list b/split-patch/test/chj-home-expected/--hunks/0021-load-.bashrc-last/_list similarity index 100% rename from test/chj-home-expected/--hunks/0021-load-.bashrc-last/_list rename to split-patch/test/chj-home-expected/--hunks/0021-load-.bashrc-last/_list diff --git a/test/chj-home-expected/--hunks/0022-better-grouping/0022-better-grouping-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0022-better-grouping/0022-better-grouping-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0022-better-grouping/0022-better-grouping-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0022-better-grouping/0022-better-grouping-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0022-better-grouping/_list b/split-patch/test/chj-home-expected/--hunks/0022-better-grouping/_list similarity index 100% rename from test/chj-home-expected/--hunks/0022-better-grouping/_list rename to split-patch/test/chj-home-expected/--hunks/0022-better-grouping/_list diff --git a/test/chj-home-expected/--hunks/0023-remove-duplicate/0023-remove-duplicate-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0023-remove-duplicate/0023-remove-duplicate-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0023-remove-duplicate/0023-remove-duplicate-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0023-remove-duplicate/0023-remove-duplicate-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0023-remove-duplicate/_list b/split-patch/test/chj-home-expected/--hunks/0023-remove-duplicate/_list similarity index 100% rename from test/chj-home-expected/--hunks/0023-remove-duplicate/_list rename to split-patch/test/chj-home-expected/--hunks/0023-remove-duplicate/_list diff --git a/test/chj-home-expected/--hunks/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0024-move-to-.bash_profile/0024-move-to-.bash_profile-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0024-move-to-.bash_profile/_list b/split-patch/test/chj-home-expected/--hunks/0024-move-to-.bash_profile/_list similarity index 100% rename from test/chj-home-expected/--hunks/0024-move-to-.bash_profile/_list rename to split-patch/test/chj-home-expected/--hunks/0024-move-to-.bash_profile/_list diff --git a/test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/0025-more-move-to-.bash_profile-incl.-HISTSIZE-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/_list b/split-patch/test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/_list similarity index 100% rename from test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/_list rename to split-patch/test/chj-home-expected/--hunks/0025-more-move-to-.bash_profile-incl.-HISTSIZE/_list diff --git a/test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-002.patch b/split-patch/test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-002.patch diff --git a/test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-003.patch b/split-patch/test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-003.patch similarity index 100% rename from test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-003.patch rename to split-patch/test/chj-home-expected/--hunks/0026-cleanup/0026-cleanup-.bashrc-003.patch diff --git a/test/chj-home-expected/--hunks/0026-cleanup/_list b/split-patch/test/chj-home-expected/--hunks/0026-cleanup/_list similarity index 100% rename from test/chj-home-expected/--hunks/0026-cleanup/_list rename to split-patch/test/chj-home-expected/--hunks/0026-cleanup/_list diff --git a/test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-001.patch b/split-patch/test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-001.patch rename to split-patch/test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bash_profile-001.patch diff --git a/test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/0027-more-move-to-.bash_profile-beautify-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/_list b/split-patch/test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/_list similarity index 100% rename from test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/_list rename to split-patch/test/chj-home-expected/--hunks/0027-more-move-to-.bash_profile-beautify/_list diff --git a/test/chj-home-expected/--hunks/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0028-source-.bash_profile_local/0028-source-.bash_profile_local-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0028-source-.bash_profile_local/_list b/split-patch/test/chj-home-expected/--hunks/0028-source-.bash_profile_local/_list similarity index 100% rename from test/chj-home-expected/--hunks/0028-source-.bash_profile_local/_list rename to split-patch/test/chj-home-expected/--hunks/0028-source-.bash_profile_local/_list diff --git a/test/chj-home-expected/--hunks/0029-source-.bashrc_local/0029-source-.bashrc_local-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0029-source-.bashrc_local/0029-source-.bashrc_local-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0029-source-.bashrc_local/0029-source-.bashrc_local-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0029-source-.bashrc_local/0029-source-.bashrc_local-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0029-source-.bashrc_local/_list b/split-patch/test/chj-home-expected/--hunks/0029-source-.bashrc_local/_list similarity index 100% rename from test/chj-home-expected/--hunks/0029-source-.bashrc_local/_list rename to split-patch/test/chj-home-expected/--hunks/0029-source-.bashrc_local/_list diff --git a/test/chj-home-expected/--hunks/0030-remove-entries-that-can-be-moved-to-.bashrc_local/0030-remove-entries-that-can-be-moved-to-.bashrc_local-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0030-remove-entries-that-can-be-moved-to-.bashrc_local/0030-remove-entries-that-can-be-moved-to-.bashrc_local-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0030-remove-entries-that-can-be-moved-to-.bashrc_local/0030-remove-entries-that-can-be-moved-to-.bashrc_local-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0030-remove-entries-that-can-be-moved-to-.bashrc_local/0030-remove-entries-that-can-be-moved-to-.bashrc_local-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0030-remove-entries-that-can-be-moved-to-.bashrc_local/_list b/split-patch/test/chj-home-expected/--hunks/0030-remove-entries-that-can-be-moved-to-.bashrc_local/_list similarity index 100% rename from test/chj-home-expected/--hunks/0030-remove-entries-that-can-be-moved-to-.bashrc_local/_list rename to split-patch/test/chj-home-expected/--hunks/0030-remove-entries-that-can-be-moved-to-.bashrc_local/_list diff --git a/test/chj-home-expected/--hunks/0031-remove-ALSARECDEV/0031-remove-ALSARECDEV-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0031-remove-ALSARECDEV/0031-remove-ALSARECDEV-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0031-remove-ALSARECDEV/0031-remove-ALSARECDEV-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0031-remove-ALSARECDEV/0031-remove-ALSARECDEV-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0031-remove-ALSARECDEV/_list b/split-patch/test/chj-home-expected/--hunks/0031-remove-ALSARECDEV/_list similarity index 100% rename from test/chj-home-expected/--hunks/0031-remove-ALSARECDEV/_list rename to split-patch/test/chj-home-expected/--hunks/0031-remove-ALSARECDEV/_list diff --git a/test/chj-home-expected/--hunks/0032-add-note-about-overridability-of-ulimit-S/0032-add-note-about-overridability-of-ulimit-S-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0032-add-note-about-overridability-of-ulimit-S/0032-add-note-about-overridability-of-ulimit-S-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0032-add-note-about-overridability-of-ulimit-S/0032-add-note-about-overridability-of-ulimit-S-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0032-add-note-about-overridability-of-ulimit-S/0032-add-note-about-overridability-of-ulimit-S-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0032-add-note-about-overridability-of-ulimit-S/_list b/split-patch/test/chj-home-expected/--hunks/0032-add-note-about-overridability-of-ulimit-S/_list similarity index 100% rename from test/chj-home-expected/--hunks/0032-add-note-about-overridability-of-ulimit-S/_list rename to split-patch/test/chj-home-expected/--hunks/0032-add-note-about-overridability-of-ulimit-S/_list diff --git a/test/chj-home-expected/--hunks/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/0033-home-init-do-the-remaining-tasks-that-chrisclone-did-home-init-000.patch b/split-patch/test/chj-home-expected/--hunks/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/0033-home-init-do-the-remaining-tasks-that-chrisclone-did-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/0033-home-init-do-the-remaining-tasks-that-chrisclone-did-home-init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/0033-home-init-do-the-remaining-tasks-that-chrisclone-did-home-init-000.patch diff --git a/test/chj-home-expected/--hunks/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/_list b/split-patch/test/chj-home-expected/--hunks/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/_list similarity index 100% rename from test/chj-home-expected/--hunks/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/_list rename to split-patch/test/chj-home-expected/--hunks/0033-home-init-do-the-remaining-tasks-that-chrisclone-did/_list diff --git a/test/chj-home-expected/--hunks/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init-000.patch b/split-patch/test/chj-home-expected/--hunks/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0034-home-init-allow-to-run-from-different-working-direct/0034-home-init-allow-to-run-from-different-working-direct-home-init-000.patch diff --git a/test/chj-home-expected/--hunks/0034-home-init-allow-to-run-from-different-working-direct/_list b/split-patch/test/chj-home-expected/--hunks/0034-home-init-allow-to-run-from-different-working-direct/_list similarity index 100% rename from test/chj-home-expected/--hunks/0034-home-init-allow-to-run-from-different-working-direct/_list rename to split-patch/test/chj-home-expected/--hunks/0034-home-init-allow-to-run-from-different-working-direct/_list diff --git a/test/chj-home-expected/--hunks/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0035-more-fix-don-t-use-aliases/0035-more-fix-don-t-use-aliases-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0035-more-fix-don-t-use-aliases/_list b/split-patch/test/chj-home-expected/--hunks/0035-more-fix-don-t-use-aliases/_list similarity index 100% rename from test/chj-home-expected/--hunks/0035-more-fix-don-t-use-aliases/_list rename to split-patch/test/chj-home-expected/--hunks/0035-more-fix-don-t-use-aliases/_list diff --git a/test/chj-home-expected/--hunks/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0036-.inputrc-cleanup/0036-.inputrc-cleanup-.inputrc-000.patch diff --git a/test/chj-home-expected/--hunks/0036-.inputrc-cleanup/_list b/split-patch/test/chj-home-expected/--hunks/0036-.inputrc-cleanup/_list similarity index 100% rename from test/chj-home-expected/--hunks/0036-.inputrc-cleanup/_list rename to split-patch/test/chj-home-expected/--hunks/0036-.inputrc-cleanup/_list diff --git a/test/chj-home-expected/--hunks/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0037-merge-root-s-home-s-features/0037-merge-root-s-home-s-features-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0037-merge-root-s-home-s-features/_list b/split-patch/test/chj-home-expected/--hunks/0037-merge-root-s-home-s-features/_list similarity index 100% rename from test/chj-home-expected/--hunks/0037-merge-root-s-home-s-features/_list rename to split-patch/test/chj-home-expected/--hunks/0037-merge-root-s-home-s-features/_list diff --git a/test/chj-home-expected/--hunks/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-000.patch b/split-patch/test/chj-home-expected/--hunks/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-000.patch rename to split-patch/test/chj-home-expected/--hunks/0038-.gitconfig-cleanup/0038-.gitconfig-cleanup-.gitconfig-000.patch diff --git a/test/chj-home-expected/--hunks/0038-.gitconfig-cleanup/_list b/split-patch/test/chj-home-expected/--hunks/0038-.gitconfig-cleanup/_list similarity index 100% rename from test/chj-home-expected/--hunks/0038-.gitconfig-cleanup/_list rename to split-patch/test/chj-home-expected/--hunks/0038-.gitconfig-cleanup/_list diff --git a/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.gitconfig-000.patch b/split-patch/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.gitconfig-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.gitconfig-000.patch rename to split-patch/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-.gitconfig-000.patch diff --git a/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-000.patch b/split-patch/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-000.patch diff --git a/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-001.patch b/split-patch/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-001.patch rename to split-patch/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/0039-ask-user-specific-info-from-home-init-generate-files-home-init-001.patch diff --git a/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/_list b/split-patch/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/_list similarity index 100% rename from test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/_list rename to split-patch/test/chj-home-expected/--hunks/0039-ask-user-specific-info-from-home-init-generate-files/_list diff --git a/test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-002.patch b/split-patch/test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/0040-.bashrc-return-false-for-failing-commands-.bashrc-002.patch diff --git a/test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/_list b/split-patch/test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/_list similarity index 100% rename from test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/_list rename to split-patch/test/chj-home-expected/--hunks/0040-.bashrc-return-false-for-failing-commands/_list diff --git a/test/chj-home-expected/--hunks/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-000.patch b/split-patch/test/chj-home-expected/--hunks/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-000.patch diff --git a/test/chj-home-expected/--hunks/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-001.patch b/split-patch/test/chj-home-expected/--hunks/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-001.patch rename to split-patch/test/chj-home-expected/--hunks/0041-home-init-only-run-once/0041-home-init-only-run-once-home-init-001.patch diff --git a/test/chj-home-expected/--hunks/0041-home-init-only-run-once/_list b/split-patch/test/chj-home-expected/--hunks/0041-home-init-only-run-once/_list similarity index 100% rename from test/chj-home-expected/--hunks/0041-home-init-only-run-once/_list rename to split-patch/test/chj-home-expected/--hunks/0041-home-init-only-run-once/_list diff --git a/test/chj-home-expected/--hunks/0042-home-init-create-scratch-directory/0042-home-init-create-scratch-directory-home-init-000.patch b/split-patch/test/chj-home-expected/--hunks/0042-home-init-create-scratch-directory/0042-home-init-create-scratch-directory-home-init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0042-home-init-create-scratch-directory/0042-home-init-create-scratch-directory-home-init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0042-home-init-create-scratch-directory/0042-home-init-create-scratch-directory-home-init-000.patch diff --git a/test/chj-home-expected/--hunks/0042-home-init-create-scratch-directory/_list b/split-patch/test/chj-home-expected/--hunks/0042-home-init-create-scratch-directory/_list similarity index 100% rename from test/chj-home-expected/--hunks/0042-home-init-create-scratch-directory/_list rename to split-patch/test/chj-home-expected/--hunks/0042-home-init-create-scratch-directory/_list diff --git a/test/chj-home-expected/--hunks/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/_list b/split-patch/test/chj-home-expected/--hunks/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/_list similarity index 100% rename from test/chj-home-expected/--hunks/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/_list rename to split-patch/test/chj-home-expected/--hunks/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t/_list diff --git a/test/chj-home-expected/--hunks/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/_list b/split-patch/test/chj-home-expected/--hunks/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/_list similarity index 100% rename from test/chj-home-expected/--hunks/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/_list rename to split-patch/test/chj-home-expected/--hunks/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH/_list diff --git a/test/chj-home-expected/--hunks/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/_list b/split-patch/test/chj-home-expected/--hunks/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/_list similarity index 100% rename from test/chj-home-expected/--hunks/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/_list rename to split-patch/test/chj-home-expected/--hunks/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b/_list diff --git a/test/chj-home-expected/--hunks/0046-.bash_profile-stop-the-X-beep/0046-.bash_profile-stop-the-X-beep-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0046-.bash_profile-stop-the-X-beep/0046-.bash_profile-stop-the-X-beep-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0046-.bash_profile-stop-the-X-beep/0046-.bash_profile-stop-the-X-beep-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0046-.bash_profile-stop-the-X-beep/0046-.bash_profile-stop-the-X-beep-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0046-.bash_profile-stop-the-X-beep/_list b/split-patch/test/chj-home-expected/--hunks/0046-.bash_profile-stop-the-X-beep/_list similarity index 100% rename from test/chj-home-expected/--hunks/0046-.bash_profile-stop-the-X-beep/_list rename to split-patch/test/chj-home-expected/--hunks/0046-.bash_profile-stop-the-X-beep/_list diff --git a/test/chj-home-expected/--hunks/0047-.Xresources-reduce-emacs-window-height/0047-.Xresources-reduce-emacs-window-height-.Xresources-000.patch b/split-patch/test/chj-home-expected/--hunks/0047-.Xresources-reduce-emacs-window-height/0047-.Xresources-reduce-emacs-window-height-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0047-.Xresources-reduce-emacs-window-height/0047-.Xresources-reduce-emacs-window-height-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--hunks/0047-.Xresources-reduce-emacs-window-height/0047-.Xresources-reduce-emacs-window-height-.Xresources-000.patch diff --git a/test/chj-home-expected/--hunks/0047-.Xresources-reduce-emacs-window-height/_list b/split-patch/test/chj-home-expected/--hunks/0047-.Xresources-reduce-emacs-window-height/_list similarity index 100% rename from test/chj-home-expected/--hunks/0047-.Xresources-reduce-emacs-window-height/_list rename to split-patch/test/chj-home-expected/--hunks/0047-.Xresources-reduce-emacs-window-height/_list diff --git a/test/chj-home-expected/--hunks/0048-.bash_profile-increase-default-virtual-memory-limit/0048-.bash_profile-increase-default-virtual-memory-limit-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0048-.bash_profile-increase-default-virtual-memory-limit/0048-.bash_profile-increase-default-virtual-memory-limit-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0048-.bash_profile-increase-default-virtual-memory-limit/0048-.bash_profile-increase-default-virtual-memory-limit-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0048-.bash_profile-increase-default-virtual-memory-limit/0048-.bash_profile-increase-default-virtual-memory-limit-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0048-.bash_profile-increase-default-virtual-memory-limit/_list b/split-patch/test/chj-home-expected/--hunks/0048-.bash_profile-increase-default-virtual-memory-limit/_list similarity index 100% rename from test/chj-home-expected/--hunks/0048-.bash_profile-increase-default-virtual-memory-limit/_list rename to split-patch/test/chj-home-expected/--hunks/0048-.bash_profile-increase-default-virtual-memory-limit/_list diff --git a/test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-001.patch b/split-patch/test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-001.patch rename to split-patch/test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/0049-move-home-init-.chj-home-init-.chj-home_init-001.patch diff --git a/test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/_list b/split-patch/test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/_list similarity index 100% rename from test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/_list rename to split-patch/test/chj-home-expected/--hunks/0049-move-home-init-.chj-home-init/_list diff --git a/test/chj-home-expected/--hunks/0050-.bash_profile-stop-the-X-beep/0050-.bash_profile-stop-the-X-beep-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0050-.bash_profile-stop-the-X-beep/0050-.bash_profile-stop-the-X-beep-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0050-.bash_profile-stop-the-X-beep/0050-.bash_profile-stop-the-X-beep-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0050-.bash_profile-stop-the-X-beep/0050-.bash_profile-stop-the-X-beep-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0050-.bash_profile-stop-the-X-beep/_list b/split-patch/test/chj-home-expected/--hunks/0050-.bash_profile-stop-the-X-beep/_list similarity index 100% rename from test/chj-home-expected/--hunks/0050-.bash_profile-stop-the-X-beep/_list rename to split-patch/test/chj-home-expected/--hunks/0050-.bash_profile-stop-the-X-beep/_list diff --git a/test/chj-home-expected/--hunks/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-001.patch b/split-patch/test/chj-home-expected/--hunks/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-001.patch rename to split-patch/test/chj-home-expected/--hunks/0051-symlink-the-opt-chj-emacs-bin-scripts/0051-symlink-the-opt-chj-emacs-bin-scripts-.chj-home_init-001.patch diff --git a/test/chj-home-expected/--hunks/0051-symlink-the-opt-chj-emacs-bin-scripts/_list b/split-patch/test/chj-home-expected/--hunks/0051-symlink-the-opt-chj-emacs-bin-scripts/_list similarity index 100% rename from test/chj-home-expected/--hunks/0051-symlink-the-opt-chj-emacs-bin-scripts/_list rename to split-patch/test/chj-home-expected/--hunks/0051-symlink-the-opt-chj-emacs-bin-scripts/_list diff --git a/test/chj-home-expected/--hunks/0052-.bashrc-use-false-instead-of-return-1/0052-.bashrc-use-false-instead-of-return-1-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0052-.bashrc-use-false-instead-of-return-1/0052-.bashrc-use-false-instead-of-return-1-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0052-.bashrc-use-false-instead-of-return-1/0052-.bashrc-use-false-instead-of-return-1-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0052-.bashrc-use-false-instead-of-return-1/0052-.bashrc-use-false-instead-of-return-1-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0052-.bashrc-use-false-instead-of-return-1/_list b/split-patch/test/chj-home-expected/--hunks/0052-.bashrc-use-false-instead-of-return-1/_list similarity index 100% rename from test/chj-home-expected/--hunks/0052-.bashrc-use-false-instead-of-return-1/_list rename to split-patch/test/chj-home-expected/--hunks/0052-.bashrc-use-false-instead-of-return-1/_list diff --git a/test/chj-home-expected/--hunks/0053-.Xresources-emacs-back-to-internal-LCD-novo/0053-.Xresources-emacs-back-to-internal-LCD-novo-.Xresources-000.patch b/split-patch/test/chj-home-expected/--hunks/0053-.Xresources-emacs-back-to-internal-LCD-novo/0053-.Xresources-emacs-back-to-internal-LCD-novo-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0053-.Xresources-emacs-back-to-internal-LCD-novo/0053-.Xresources-emacs-back-to-internal-LCD-novo-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--hunks/0053-.Xresources-emacs-back-to-internal-LCD-novo/0053-.Xresources-emacs-back-to-internal-LCD-novo-.Xresources-000.patch diff --git a/test/chj-home-expected/--hunks/0053-.Xresources-emacs-back-to-internal-LCD-novo/_list b/split-patch/test/chj-home-expected/--hunks/0053-.Xresources-emacs-back-to-internal-LCD-novo/_list similarity index 100% rename from test/chj-home-expected/--hunks/0053-.Xresources-emacs-back-to-internal-LCD-novo/_list rename to split-patch/test/chj-home-expected/--hunks/0053-.Xresources-emacs-back-to-internal-LCD-novo/_list diff --git a/test/chj-home-expected/--hunks/0054-.Xresources-omfg-it-was-correctly-displayed/0054-.Xresources-omfg-it-was-correctly-displayed-.Xresources-000.patch b/split-patch/test/chj-home-expected/--hunks/0054-.Xresources-omfg-it-was-correctly-displayed/0054-.Xresources-omfg-it-was-correctly-displayed-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0054-.Xresources-omfg-it-was-correctly-displayed/0054-.Xresources-omfg-it-was-correctly-displayed-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--hunks/0054-.Xresources-omfg-it-was-correctly-displayed/0054-.Xresources-omfg-it-was-correctly-displayed-.Xresources-000.patch diff --git a/test/chj-home-expected/--hunks/0054-.Xresources-omfg-it-was-correctly-displayed/_list b/split-patch/test/chj-home-expected/--hunks/0054-.Xresources-omfg-it-was-correctly-displayed/_list similarity index 100% rename from test/chj-home-expected/--hunks/0054-.Xresources-omfg-it-was-correctly-displayed/_list rename to split-patch/test/chj-home-expected/--hunks/0054-.Xresources-omfg-it-was-correctly-displayed/_list diff --git a/test/chj-home-expected/--hunks/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/0055-add-.xscreensaver-with-hand-selection-through-ALL-of-.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--hunks/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/0055-add-.xscreensaver-with-hand-selection-through-ALL-of-.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/0055-add-.xscreensaver-with-hand-selection-through-ALL-of-.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--hunks/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/0055-add-.xscreensaver-with-hand-selection-through-ALL-of-.xscreensaver-000.patch diff --git a/test/chj-home-expected/--hunks/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/_list b/split-patch/test/chj-home-expected/--hunks/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/_list similarity index 100% rename from test/chj-home-expected/--hunks/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/_list rename to split-patch/test/chj-home-expected/--hunks/0055-add-.xscreensaver-with-hand-selection-through-ALL-of/_list diff --git a/test/chj-home-expected/--hunks/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--hunks/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--hunks/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-000.patch diff --git a/test/chj-home-expected/--hunks/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-001.patch b/split-patch/test/chj-home-expected/--hunks/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-001.patch rename to split-patch/test/chj-home-expected/--hunks/0056-.xscreensaver-disable-sonar/0056-.xscreensaver-disable-sonar-.xscreensaver-001.patch diff --git a/test/chj-home-expected/--hunks/0056-.xscreensaver-disable-sonar/_list b/split-patch/test/chj-home-expected/--hunks/0056-.xscreensaver-disable-sonar/_list similarity index 100% rename from test/chj-home-expected/--hunks/0056-.xscreensaver-disable-sonar/_list rename to split-patch/test/chj-home-expected/--hunks/0056-.xscreensaver-disable-sonar/_list diff --git a/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-000.patch diff --git a/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-001.patch b/split-patch/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-001.patch rename to split-patch/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-001.patch diff --git a/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-002.patch b/split-patch/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-002.patch similarity index 100% rename from test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-002.patch rename to split-patch/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-002.patch diff --git a/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-003.patch b/split-patch/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-003.patch similarity index 100% rename from test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-003.patch rename to split-patch/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-003.patch diff --git a/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-004.patch b/split-patch/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-004.patch similarity index 100% rename from test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-004.patch rename to split-patch/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-004.patch diff --git a/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-005.patch b/split-patch/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-005.patch similarity index 100% rename from test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-005.patch rename to split-patch/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep-.xscreensaver-005.patch diff --git a/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/_list b/split-patch/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/_list similarity index 100% rename from test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/_list rename to split-patch/test/chj-home-expected/--hunks/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep/_list diff --git a/test/chj-home-expected/--hunks/0058-.bashrc-ls-with-colors/0058-.bashrc-ls-with-colors-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0058-.bashrc-ls-with-colors/0058-.bashrc-ls-with-colors-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0058-.bashrc-ls-with-colors/0058-.bashrc-ls-with-colors-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0058-.bashrc-ls-with-colors/0058-.bashrc-ls-with-colors-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0058-.bashrc-ls-with-colors/_list b/split-patch/test/chj-home-expected/--hunks/0058-.bashrc-ls-with-colors/_list similarity index 100% rename from test/chj-home-expected/--hunks/0058-.bashrc-ls-with-colors/_list rename to split-patch/test/chj-home-expected/--hunks/0058-.bashrc-ls-with-colors/_list diff --git a/test/chj-home-expected/--hunks/0059-.bashrc-remove-le-function/0059-.bashrc-remove-le-function-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0059-.bashrc-remove-le-function/0059-.bashrc-remove-le-function-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0059-.bashrc-remove-le-function/0059-.bashrc-remove-le-function-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0059-.bashrc-remove-le-function/0059-.bashrc-remove-le-function-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0059-.bashrc-remove-le-function/_list b/split-patch/test/chj-home-expected/--hunks/0059-.bashrc-remove-le-function/_list similarity index 100% rename from test/chj-home-expected/--hunks/0059-.bashrc-remove-le-function/_list rename to split-patch/test/chj-home-expected/--hunks/0059-.bashrc-remove-le-function/_list diff --git a/test/chj-home-expected/--hunks/0060-make-unlimit-accept-a-command/0060-make-unlimit-accept-a-command-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0060-make-unlimit-accept-a-command/0060-make-unlimit-accept-a-command-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0060-make-unlimit-accept-a-command/0060-make-unlimit-accept-a-command-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0060-make-unlimit-accept-a-command/0060-make-unlimit-accept-a-command-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0060-make-unlimit-accept-a-command/_list b/split-patch/test/chj-home-expected/--hunks/0060-make-unlimit-accept-a-command/_list similarity index 100% rename from test/chj-home-expected/--hunks/0060-make-unlimit-accept-a-command/_list rename to split-patch/test/chj-home-expected/--hunks/0060-make-unlimit-accept-a-command/_list diff --git a/test/chj-home-expected/--hunks/0061-move-.xscreensaver-config-file-let-user-symlink-it/_list b/split-patch/test/chj-home-expected/--hunks/0061-move-.xscreensaver-config-file-let-user-symlink-it/_list similarity index 100% rename from test/chj-home-expected/--hunks/0061-move-.xscreensaver-config-file-let-user-symlink-it/_list rename to split-patch/test/chj-home-expected/--hunks/0061-move-.xscreensaver-config-file-let-user-symlink-it/_list diff --git a/test/chj-home-expected/--hunks/0062-turn-PrtSc-button-into-Control/0062-turn-PrtSc-button-into-Control-.xmodmaprc-000.patch b/split-patch/test/chj-home-expected/--hunks/0062-turn-PrtSc-button-into-Control/0062-turn-PrtSc-button-into-Control-.xmodmaprc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0062-turn-PrtSc-button-into-Control/0062-turn-PrtSc-button-into-Control-.xmodmaprc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0062-turn-PrtSc-button-into-Control/0062-turn-PrtSc-button-into-Control-.xmodmaprc-000.patch diff --git a/test/chj-home-expected/--hunks/0062-turn-PrtSc-button-into-Control/_list b/split-patch/test/chj-home-expected/--hunks/0062-turn-PrtSc-button-into-Control/_list similarity index 100% rename from test/chj-home-expected/--hunks/0062-turn-PrtSc-button-into-Control/_list rename to split-patch/test/chj-home-expected/--hunks/0062-turn-PrtSc-button-into-Control/_list diff --git a/test/chj-home-expected/--hunks/0063-.bashrc-silence-error-message-when-in-scratch/0063-.bashrc-silence-error-message-when-in-scratch-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0063-.bashrc-silence-error-message-when-in-scratch/0063-.bashrc-silence-error-message-when-in-scratch-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0063-.bashrc-silence-error-message-when-in-scratch/0063-.bashrc-silence-error-message-when-in-scratch-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0063-.bashrc-silence-error-message-when-in-scratch/0063-.bashrc-silence-error-message-when-in-scratch-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0063-.bashrc-silence-error-message-when-in-scratch/_list b/split-patch/test/chj-home-expected/--hunks/0063-.bashrc-silence-error-message-when-in-scratch/_list similarity index 100% rename from test/chj-home-expected/--hunks/0063-.bashrc-silence-error-message-when-in-scratch/_list rename to split-patch/test/chj-home-expected/--hunks/0063-.bashrc-silence-error-message-when-in-scratch/_list diff --git a/test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-002.patch b/split-patch/test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/0064-.bashrc-don-t-use-backticks-.bashrc-002.patch diff --git a/test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/_list b/split-patch/test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/_list similarity index 100% rename from test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/_list rename to split-patch/test/chj-home-expected/--hunks/0064-.bashrc-don-t-use-backticks/_list diff --git a/test/chj-home-expected/--hunks/0065-.bashrc-add-rensn/0065-.bashrc-add-rensn-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0065-.bashrc-add-rensn/0065-.bashrc-add-rensn-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0065-.bashrc-add-rensn/0065-.bashrc-add-rensn-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0065-.bashrc-add-rensn/0065-.bashrc-add-rensn-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0065-.bashrc-add-rensn/_list b/split-patch/test/chj-home-expected/--hunks/0065-.bashrc-add-rensn/_list similarity index 100% rename from test/chj-home-expected/--hunks/0065-.bashrc-add-rensn/_list rename to split-patch/test/chj-home-expected/--hunks/0065-.bashrc-add-rensn/_list diff --git a/test/chj-home-expected/--hunks/0066-.bashrc-add-rensnall/0066-.bashrc-add-rensnall-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0066-.bashrc-add-rensnall/0066-.bashrc-add-rensnall-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0066-.bashrc-add-rensnall/0066-.bashrc-add-rensnall-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0066-.bashrc-add-rensnall/0066-.bashrc-add-rensnall-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0066-.bashrc-add-rensnall/_list b/split-patch/test/chj-home-expected/--hunks/0066-.bashrc-add-rensnall/_list similarity index 100% rename from test/chj-home-expected/--hunks/0066-.bashrc-add-rensnall/_list rename to split-patch/test/chj-home-expected/--hunks/0066-.bashrc-add-rensnall/_list diff --git a/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-002.patch b/split-patch/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-002.patch diff --git a/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-003.patch b/split-patch/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-003.patch similarity index 100% rename from test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-003.patch rename to split-patch/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-003.patch diff --git a/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-004.patch b/split-patch/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-004.patch similarity index 100% rename from test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-004.patch rename to split-patch/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-004.patch diff --git a/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-005.patch b/split-patch/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-005.patch similarity index 100% rename from test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-005.patch rename to split-patch/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/0067-.bashrc-consistently-format-function-definitions-.bashrc-005.patch diff --git a/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/_list b/split-patch/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/_list similarity index 100% rename from test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/_list rename to split-patch/test/chj-home-expected/--hunks/0067-.bashrc-consistently-format-function-definitions/_list diff --git a/test/chj-home-expected/--hunks/0068-.bashrc-use-ren-nonrenamed/0068-.bashrc-use-ren-nonrenamed-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0068-.bashrc-use-ren-nonrenamed/0068-.bashrc-use-ren-nonrenamed-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0068-.bashrc-use-ren-nonrenamed/0068-.bashrc-use-ren-nonrenamed-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0068-.bashrc-use-ren-nonrenamed/0068-.bashrc-use-ren-nonrenamed-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0068-.bashrc-use-ren-nonrenamed/_list b/split-patch/test/chj-home-expected/--hunks/0068-.bashrc-use-ren-nonrenamed/_list similarity index 100% rename from test/chj-home-expected/--hunks/0068-.bashrc-use-ren-nonrenamed/_list rename to split-patch/test/chj-home-expected/--hunks/0068-.bashrc-use-ren-nonrenamed/_list diff --git a/test/chj-home-expected/--hunks/0069-.bashrc-shorten-that-name/0069-.bashrc-shorten-that-name-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0069-.bashrc-shorten-that-name/0069-.bashrc-shorten-that-name-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0069-.bashrc-shorten-that-name/0069-.bashrc-shorten-that-name-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0069-.bashrc-shorten-that-name/0069-.bashrc-shorten-that-name-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0069-.bashrc-shorten-that-name/_list b/split-patch/test/chj-home-expected/--hunks/0069-.bashrc-shorten-that-name/_list similarity index 100% rename from test/chj-home-expected/--hunks/0069-.bashrc-shorten-that-name/_list rename to split-patch/test/chj-home-expected/--hunks/0069-.bashrc-shorten-that-name/_list diff --git a/test/chj-home-expected/--hunks/0070-.bashrc-add-cb/0070-.bashrc-add-cb-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0070-.bashrc-add-cb/0070-.bashrc-add-cb-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0070-.bashrc-add-cb/0070-.bashrc-add-cb-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0070-.bashrc-add-cb/0070-.bashrc-add-cb-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0070-.bashrc-add-cb/_list b/split-patch/test/chj-home-expected/--hunks/0070-.bashrc-add-cb/_list similarity index 100% rename from test/chj-home-expected/--hunks/0070-.bashrc-add-cb/_list rename to split-patch/test/chj-home-expected/--hunks/0070-.bashrc-add-cb/_list diff --git a/test/chj-home-expected/--hunks/0071-Turn-off-new-Git-editor-waiting-warning/0071-Turn-off-new-Git-editor-waiting-warning-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0071-Turn-off-new-Git-editor-waiting-warning/0071-Turn-off-new-Git-editor-waiting-warning-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0071-Turn-off-new-Git-editor-waiting-warning/0071-Turn-off-new-Git-editor-waiting-warning-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0071-Turn-off-new-Git-editor-waiting-warning/0071-Turn-off-new-Git-editor-waiting-warning-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0071-Turn-off-new-Git-editor-waiting-warning/_list b/split-patch/test/chj-home-expected/--hunks/0071-Turn-off-new-Git-editor-waiting-warning/_list similarity index 100% rename from test/chj-home-expected/--hunks/0071-Turn-off-new-Git-editor-waiting-warning/_list rename to split-patch/test/chj-home-expected/--hunks/0071-Turn-off-new-Git-editor-waiting-warning/_list diff --git a/test/chj-home-expected/--hunks/0072-.bashrc-cb-accept-argument/0072-.bashrc-cb-accept-argument-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0072-.bashrc-cb-accept-argument/0072-.bashrc-cb-accept-argument-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0072-.bashrc-cb-accept-argument/0072-.bashrc-cb-accept-argument-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0072-.bashrc-cb-accept-argument/0072-.bashrc-cb-accept-argument-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0072-.bashrc-cb-accept-argument/_list b/split-patch/test/chj-home-expected/--hunks/0072-.bashrc-cb-accept-argument/_list similarity index 100% rename from test/chj-home-expected/--hunks/0072-.bashrc-cb-accept-argument/_list rename to split-patch/test/chj-home-expected/--hunks/0072-.bashrc-cb-accept-argument/_list diff --git a/test/chj-home-expected/--hunks/0073-.bashrc-cb-do-it-better/0073-.bashrc-cb-do-it-better-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0073-.bashrc-cb-do-it-better/0073-.bashrc-cb-do-it-better-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0073-.bashrc-cb-do-it-better/0073-.bashrc-cb-do-it-better-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0073-.bashrc-cb-do-it-better/0073-.bashrc-cb-do-it-better-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0073-.bashrc-cb-do-it-better/_list b/split-patch/test/chj-home-expected/--hunks/0073-.bashrc-cb-do-it-better/_list similarity index 100% rename from test/chj-home-expected/--hunks/0073-.bashrc-cb-do-it-better/_list rename to split-patch/test/chj-home-expected/--hunks/0073-.bashrc-cb-do-it-better/_list diff --git a/test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.lesskey-000.patch b/split-patch/test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.lesskey-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.lesskey-000.patch rename to split-patch/test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/0074-Don-t-use-.lesskey-anymore-for-env-LESS-.lesskey-000.patch diff --git a/test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/_list b/split-patch/test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/_list similarity index 100% rename from test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/_list rename to split-patch/test/chj-home-expected/--hunks/0074-Don-t-use-.lesskey-anymore-for-env-LESS/_list diff --git a/test/chj-home-expected/--hunks/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/_list b/split-patch/test/chj-home-expected/--hunks/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/_list similarity index 100% rename from test/chj-home-expected/--hunks/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/_list rename to split-patch/test/chj-home-expected/--hunks/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots/_list diff --git a/test/chj-home-expected/--hunks/0076-.bashrc-have-u-etc.-take-optional-argument/0076-.bashrc-have-u-etc.-take-optional-argument-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0076-.bashrc-have-u-etc.-take-optional-argument/0076-.bashrc-have-u-etc.-take-optional-argument-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0076-.bashrc-have-u-etc.-take-optional-argument/0076-.bashrc-have-u-etc.-take-optional-argument-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0076-.bashrc-have-u-etc.-take-optional-argument/0076-.bashrc-have-u-etc.-take-optional-argument-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0076-.bashrc-have-u-etc.-take-optional-argument/_list b/split-patch/test/chj-home-expected/--hunks/0076-.bashrc-have-u-etc.-take-optional-argument/_list similarity index 100% rename from test/chj-home-expected/--hunks/0076-.bashrc-have-u-etc.-take-optional-argument/_list rename to split-patch/test/chj-home-expected/--hunks/0076-.bashrc-have-u-etc.-take-optional-argument/_list diff --git a/test/chj-home-expected/--hunks/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/0077-.bashrc-make-u-etc.-transaction-safe-kind-of-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/_list b/split-patch/test/chj-home-expected/--hunks/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/_list similarity index 100% rename from test/chj-home-expected/--hunks/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/_list rename to split-patch/test/chj-home-expected/--hunks/0077-.bashrc-make-u-etc.-transaction-safe-kind-of/_list diff --git a/test/chj-home-expected/--hunks/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/0078-.bashrc-u-more-transaction-safety-properly-handle-OL-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/0078-.bashrc-u-more-transaction-safety-properly-handle-OL-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/0078-.bashrc-u-more-transaction-safety-properly-handle-OL-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/0078-.bashrc-u-more-transaction-safety-properly-handle-OL-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/_list b/split-patch/test/chj-home-expected/--hunks/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/_list similarity index 100% rename from test/chj-home-expected/--hunks/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/_list rename to split-patch/test/chj-home-expected/--hunks/0078-.bashrc-u-more-transaction-safety-properly-handle-OL/_list diff --git a/test/chj-home-expected/--hunks/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/_list b/split-patch/test/chj-home-expected/--hunks/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/_list similarity index 100% rename from test/chj-home-expected/--hunks/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/_list rename to split-patch/test/chj-home-expected/--hunks/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change/_list diff --git a/test/chj-home-expected/--hunks/0080-.bash_profile-double-history-size/0080-.bash_profile-double-history-size-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0080-.bash_profile-double-history-size/0080-.bash_profile-double-history-size-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0080-.bash_profile-double-history-size/0080-.bash_profile-double-history-size-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0080-.bash_profile-double-history-size/0080-.bash_profile-double-history-size-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0080-.bash_profile-double-history-size/_list b/split-patch/test/chj-home-expected/--hunks/0080-.bash_profile-double-history-size/_list similarity index 100% rename from test/chj-home-expected/--hunks/0080-.bash_profile-double-history-size/_list rename to split-patch/test/chj-home-expected/--hunks/0080-.bash_profile-double-history-size/_list diff --git a/test/chj-home-expected/--hunks/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard-.xpdfrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard-.xpdfrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard-.xpdfrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard-.xpdfrc-000.patch diff --git a/test/chj-home-expected/--hunks/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/_list b/split-patch/test/chj-home-expected/--hunks/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/_list similarity index 100% rename from test/chj-home-expected/--hunks/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/_list rename to split-patch/test/chj-home-expected/--hunks/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard/_list diff --git a/test/chj-home-expected/--hunks/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/_list b/split-patch/test/chj-home-expected/--hunks/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/_list similarity index 100% rename from test/chj-home-expected/--hunks/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/_list rename to split-patch/test/chj-home-expected/--hunks/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k/_list diff --git a/test/chj-home-expected/--hunks/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0083-Yet-increase-bash-history-size-more/0083-Yet-increase-bash-history-size-more-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0083-Yet-increase-bash-history-size-more/_list b/split-patch/test/chj-home-expected/--hunks/0083-Yet-increase-bash-history-size-more/_list similarity index 100% rename from test/chj-home-expected/--hunks/0083-Yet-increase-bash-history-size-more/_list rename to split-patch/test/chj-home-expected/--hunks/0083-Yet-increase-bash-history-size-more/_list diff --git a/test/chj-home-expected/--hunks/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0084-Move-CHJHOSTNAME-to-right-place-too/0084-Move-CHJHOSTNAME-to-right-place-too-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0084-Move-CHJHOSTNAME-to-right-place-too/_list b/split-patch/test/chj-home-expected/--hunks/0084-Move-CHJHOSTNAME-to-right-place-too/_list similarity index 100% rename from test/chj-home-expected/--hunks/0084-Move-CHJHOSTNAME-to-right-place-too/_list rename to split-patch/test/chj-home-expected/--hunks/0084-Move-CHJHOSTNAME-to-right-place-too/_list diff --git a/test/chj-home-expected/--hunks/0085-.bashrc-add-cdn-alias-for-cd_newest/0085-.bashrc-add-cdn-alias-for-cd_newest-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0085-.bashrc-add-cdn-alias-for-cd_newest/0085-.bashrc-add-cdn-alias-for-cd_newest-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0085-.bashrc-add-cdn-alias-for-cd_newest/0085-.bashrc-add-cdn-alias-for-cd_newest-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0085-.bashrc-add-cdn-alias-for-cd_newest/0085-.bashrc-add-cdn-alias-for-cd_newest-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0085-.bashrc-add-cdn-alias-for-cd_newest/_list b/split-patch/test/chj-home-expected/--hunks/0085-.bashrc-add-cdn-alias-for-cd_newest/_list similarity index 100% rename from test/chj-home-expected/--hunks/0085-.bashrc-add-cdn-alias-for-cd_newest/_list rename to split-patch/test/chj-home-expected/--hunks/0085-.bashrc-add-cdn-alias-for-cd_newest/_list diff --git a/test/chj-home-expected/--hunks/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0086-.bashrc-remove-stale-commented-lines/0086-.bashrc-remove-stale-commented-lines-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0086-.bashrc-remove-stale-commented-lines/_list b/split-patch/test/chj-home-expected/--hunks/0086-.bashrc-remove-stale-commented-lines/_list similarity index 100% rename from test/chj-home-expected/--hunks/0086-.bashrc-remove-stale-commented-lines/_list rename to split-patch/test/chj-home-expected/--hunks/0086-.bashrc-remove-stale-commented-lines/_list diff --git a/test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-002.patch b/split-patch/test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-002.patch similarity index 100% rename from test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-002.patch rename to split-patch/test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/0087-.bashrc-clean-up-with-regards-to-.bashrc_local-.bashrc-002.patch diff --git a/test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/_list b/split-patch/test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/_list similarity index 100% rename from test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/_list rename to split-patch/test/chj-home-expected/--hunks/0087-.bashrc-clean-up-with-regards-to-.bashrc_local/_list diff --git a/test/chj-home-expected/--hunks/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/_list b/split-patch/test/chj-home-expected/--hunks/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/_list similarity index 100% rename from test/chj-home-expected/--hunks/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/_list rename to split-patch/test/chj-home-expected/--hunks/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented/_list diff --git a/test/chj-home-expected/--hunks/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again-.chj-home_dot.xscreensaver-dull-000.patch b/split-patch/test/chj-home-expected/--hunks/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again-.chj-home_dot.xscreensaver-dull-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again-.chj-home_dot.xscreensaver-dull-000.patch rename to split-patch/test/chj-home-expected/--hunks/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again-.chj-home_dot.xscreensaver-dull-000.patch diff --git a/test/chj-home-expected/--hunks/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/_list b/split-patch/test/chj-home-expected/--hunks/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/_list similarity index 100% rename from test/chj-home-expected/--hunks/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/_list rename to split-patch/test/chj-home-expected/--hunks/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again/_list diff --git a/test/chj-home-expected/--hunks/0090-.bashrc-cdn-ah-I-can-overload-it/0090-.bashrc-cdn-ah-I-can-overload-it-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0090-.bashrc-cdn-ah-I-can-overload-it/0090-.bashrc-cdn-ah-I-can-overload-it-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0090-.bashrc-cdn-ah-I-can-overload-it/0090-.bashrc-cdn-ah-I-can-overload-it-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0090-.bashrc-cdn-ah-I-can-overload-it/0090-.bashrc-cdn-ah-I-can-overload-it-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0090-.bashrc-cdn-ah-I-can-overload-it/_list b/split-patch/test/chj-home-expected/--hunks/0090-.bashrc-cdn-ah-I-can-overload-it/_list similarity index 100% rename from test/chj-home-expected/--hunks/0090-.bashrc-cdn-ah-I-can-overload-it/_list rename to split-patch/test/chj-home-expected/--hunks/0090-.bashrc-cdn-ah-I-can-overload-it/_list diff --git a/test/chj-home-expected/--hunks/0091-.bashrc-add-cj/0091-.bashrc-add-cj-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0091-.bashrc-add-cj/0091-.bashrc-add-cj-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0091-.bashrc-add-cj/0091-.bashrc-add-cj-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0091-.bashrc-add-cj/0091-.bashrc-add-cj-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0091-.bashrc-add-cj/_list b/split-patch/test/chj-home-expected/--hunks/0091-.bashrc-add-cj/_list similarity index 100% rename from test/chj-home-expected/--hunks/0091-.bashrc-add-cj/_list rename to split-patch/test/chj-home-expected/--hunks/0091-.bashrc-add-cj/_list diff --git a/test/chj-home-expected/--hunks/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/0092-.chj-home-init-make-sure-the-chjize-key-is-imported-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/0092-.chj-home-init-make-sure-the-chjize-key-is-imported-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/0092-.chj-home-init-make-sure-the-chjize-key-is-imported-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/0092-.chj-home-init-make-sure-the-chjize-key-is-imported-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/_list b/split-patch/test/chj-home-expected/--hunks/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/_list similarity index 100% rename from test/chj-home-expected/--hunks/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/_list rename to split-patch/test/chj-home-expected/--hunks/0092-.chj-home-init-make-sure-the-chjize-key-is-imported/_list diff --git a/test/chj-home-expected/--hunks/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-001.patch b/split-patch/test/chj-home-expected/--hunks/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-001.patch rename to split-patch/test/chj-home-expected/--hunks/0093-.chj-home-init-move-gpg-import-to-the-end/0093-.chj-home-init-move-gpg-import-to-the-end-.chj-home_init-001.patch diff --git a/test/chj-home-expected/--hunks/0093-.chj-home-init-move-gpg-import-to-the-end/_list b/split-patch/test/chj-home-expected/--hunks/0093-.chj-home-init-move-gpg-import-to-the-end/_list similarity index 100% rename from test/chj-home-expected/--hunks/0093-.chj-home-init-move-gpg-import-to-the-end/_list rename to split-patch/test/chj-home-expected/--hunks/0093-.chj-home-init-move-gpg-import-to-the-end/_list diff --git a/test/chj-home-expected/--hunks/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/0094-.chj-home-init-initialize-a-Git-repo-in-scratch-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/0094-.chj-home-init-initialize-a-Git-repo-in-scratch-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/0094-.chj-home-init-initialize-a-Git-repo-in-scratch-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/0094-.chj-home-init-initialize-a-Git-repo-in-scratch-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/_list b/split-patch/test/chj-home-expected/--hunks/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/_list similarity index 100% rename from test/chj-home-expected/--hunks/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/_list rename to split-patch/test/chj-home-expected/--hunks/0094-.chj-home-init-initialize-a-Git-repo-in-scratch/_list diff --git a/test/chj-home-expected/--hunks/0095-.bash_profile-put-chjize-into-PATH/0095-.bash_profile-put-chjize-into-PATH-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0095-.bash_profile-put-chjize-into-PATH/0095-.bash_profile-put-chjize-into-PATH-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0095-.bash_profile-put-chjize-into-PATH/0095-.bash_profile-put-chjize-into-PATH-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0095-.bash_profile-put-chjize-into-PATH/0095-.bash_profile-put-chjize-into-PATH-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0095-.bash_profile-put-chjize-into-PATH/_list b/split-patch/test/chj-home-expected/--hunks/0095-.bash_profile-put-chjize-into-PATH/_list similarity index 100% rename from test/chj-home-expected/--hunks/0095-.bash_profile-put-chjize-into-PATH/_list rename to split-patch/test/chj-home-expected/--hunks/0095-.bash_profile-put-chjize-into-PATH/_list diff --git a/test/chj-home-expected/--hunks/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/_list b/split-patch/test/chj-home-expected/--hunks/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/_list similarity index 100% rename from test/chj-home-expected/--hunks/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/_list rename to split-patch/test/chj-home-expected/--hunks/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option/_list diff --git a/test/chj-home-expected/--hunks/0097-.bash_profile-set-USER-if-missing/0097-.bash_profile-set-USER-if-missing-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0097-.bash_profile-set-USER-if-missing/0097-.bash_profile-set-USER-if-missing-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0097-.bash_profile-set-USER-if-missing/0097-.bash_profile-set-USER-if-missing-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0097-.bash_profile-set-USER-if-missing/0097-.bash_profile-set-USER-if-missing-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0097-.bash_profile-set-USER-if-missing/_list b/split-patch/test/chj-home-expected/--hunks/0097-.bash_profile-set-USER-if-missing/_list similarity index 100% rename from test/chj-home-expected/--hunks/0097-.bash_profile-set-USER-if-missing/_list rename to split-patch/test/chj-home-expected/--hunks/0097-.bash_profile-set-USER-if-missing/_list diff --git a/test/chj-home-expected/--hunks/0098-.bash_profile-add-cj-qemucontrol-to-PATH/0098-.bash_profile-add-cj-qemucontrol-to-PATH-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0098-.bash_profile-add-cj-qemucontrol-to-PATH/0098-.bash_profile-add-cj-qemucontrol-to-PATH-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0098-.bash_profile-add-cj-qemucontrol-to-PATH/0098-.bash_profile-add-cj-qemucontrol-to-PATH-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0098-.bash_profile-add-cj-qemucontrol-to-PATH/0098-.bash_profile-add-cj-qemucontrol-to-PATH-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0098-.bash_profile-add-cj-qemucontrol-to-PATH/_list b/split-patch/test/chj-home-expected/--hunks/0098-.bash_profile-add-cj-qemucontrol-to-PATH/_list similarity index 100% rename from test/chj-home-expected/--hunks/0098-.bash_profile-add-cj-qemucontrol-to-PATH/_list rename to split-patch/test/chj-home-expected/--hunks/0098-.bash_profile-add-cj-qemucontrol-to-PATH/_list diff --git a/test/chj-home-expected/--hunks/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0099-.chj-home-init-accept-email-addresses-with-full-name/0099-.chj-home-init-accept-email-addresses-with-full-name-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0099-.chj-home-init-accept-email-addresses-with-full-name/_list b/split-patch/test/chj-home-expected/--hunks/0099-.chj-home-init-accept-email-addresses-with-full-name/_list similarity index 100% rename from test/chj-home-expected/--hunks/0099-.chj-home-init-accept-email-addresses-with-full-name/_list rename to split-patch/test/chj-home-expected/--hunks/0099-.chj-home-init-accept-email-addresses-with-full-name/_list diff --git a/test/chj-home-expected/--hunks/0100-.chj-home-init-set-scoma-settings/0100-.chj-home-init-set-scoma-settings-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0100-.chj-home-init-set-scoma-settings/0100-.chj-home-init-set-scoma-settings-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0100-.chj-home-init-set-scoma-settings/0100-.chj-home-init-set-scoma-settings-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0100-.chj-home-init-set-scoma-settings/0100-.chj-home-init-set-scoma-settings-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0100-.chj-home-init-set-scoma-settings/_list b/split-patch/test/chj-home-expected/--hunks/0100-.chj-home-init-set-scoma-settings/_list similarity index 100% rename from test/chj-home-expected/--hunks/0100-.chj-home-init-set-scoma-settings/_list rename to split-patch/test/chj-home-expected/--hunks/0100-.chj-home-init-set-scoma-settings/_list diff --git a/test/chj-home-expected/--hunks/0101-.chj-home-init-fix-perms-on-checked-out-directories/0101-.chj-home-init-fix-perms-on-checked-out-directories-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0101-.chj-home-init-fix-perms-on-checked-out-directories/0101-.chj-home-init-fix-perms-on-checked-out-directories-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0101-.chj-home-init-fix-perms-on-checked-out-directories/0101-.chj-home-init-fix-perms-on-checked-out-directories-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0101-.chj-home-init-fix-perms-on-checked-out-directories/0101-.chj-home-init-fix-perms-on-checked-out-directories-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0101-.chj-home-init-fix-perms-on-checked-out-directories/_list b/split-patch/test/chj-home-expected/--hunks/0101-.chj-home-init-fix-perms-on-checked-out-directories/_list similarity index 100% rename from test/chj-home-expected/--hunks/0101-.chj-home-init-fix-perms-on-checked-out-directories/_list rename to split-patch/test/chj-home-expected/--hunks/0101-.chj-home-init-fix-perms-on-checked-out-directories/_list diff --git a/test/chj-home-expected/--hunks/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/_list b/split-patch/test/chj-home-expected/--hunks/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/_list similarity index 100% rename from test/chj-home-expected/--hunks/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/_list rename to split-patch/test/chj-home-expected/--hunks/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director/_list diff --git a/test/chj-home-expected/--hunks/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0103-.bashrc-show-exit-code-on-failing-commands/0103-.bashrc-show-exit-code-on-failing-commands-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0103-.bashrc-show-exit-code-on-failing-commands/_list b/split-patch/test/chj-home-expected/--hunks/0103-.bashrc-show-exit-code-on-failing-commands/_list similarity index 100% rename from test/chj-home-expected/--hunks/0103-.bashrc-show-exit-code-on-failing-commands/_list rename to split-patch/test/chj-home-expected/--hunks/0103-.bashrc-show-exit-code-on-failing-commands/_list diff --git a/test/chj-home-expected/--hunks/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/_list b/split-patch/test/chj-home-expected/--hunks/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/_list similarity index 100% rename from test/chj-home-expected/--hunks/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/_list rename to split-patch/test/chj-home-expected/--hunks/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info/_list diff --git a/test/chj-home-expected/--hunks/0105-.bashrc-show-exit-code-on-a-separate-line/0105-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0105-.bashrc-show-exit-code-on-a-separate-line/0105-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0105-.bashrc-show-exit-code-on-a-separate-line/0105-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0105-.bashrc-show-exit-code-on-a-separate-line/0105-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0105-.bashrc-show-exit-code-on-a-separate-line/_list b/split-patch/test/chj-home-expected/--hunks/0105-.bashrc-show-exit-code-on-a-separate-line/_list similarity index 100% rename from test/chj-home-expected/--hunks/0105-.bashrc-show-exit-code-on-a-separate-line/_list rename to split-patch/test/chj-home-expected/--hunks/0105-.bashrc-show-exit-code-on-a-separate-line/_list diff --git a/test/chj-home-expected/--hunks/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/0106-Revert-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/0106-Revert-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/0106-Revert-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/0106-Revert-.bashrc-show-exit-code-on-a-separate-line-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/_list b/split-patch/test/chj-home-expected/--hunks/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/_list similarity index 100% rename from test/chj-home-expected/--hunks/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/_list rename to split-patch/test/chj-home-expected/--hunks/0106-Revert-.bashrc-show-exit-code-on-a-separate-line/_list diff --git a/test/chj-home-expected/--hunks/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0107-.bashrc-restructure-prompt-command/0107-.bashrc-restructure-prompt-command-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0107-.bashrc-restructure-prompt-command/_list b/split-patch/test/chj-home-expected/--hunks/0107-.bashrc-restructure-prompt-command/_list similarity index 100% rename from test/chj-home-expected/--hunks/0107-.bashrc-restructure-prompt-command/_list rename to split-patch/test/chj-home-expected/--hunks/0107-.bashrc-restructure-prompt-command/_list diff --git a/test/chj-home-expected/--hunks/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0108-.bashrc-set-PS1-differently-on-each-iteration/0108-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0108-.bashrc-set-PS1-differently-on-each-iteration/_list b/split-patch/test/chj-home-expected/--hunks/0108-.bashrc-set-PS1-differently-on-each-iteration/_list similarity index 100% rename from test/chj-home-expected/--hunks/0108-.bashrc-set-PS1-differently-on-each-iteration/_list rename to split-patch/test/chj-home-expected/--hunks/0108-.bashrc-set-PS1-differently-on-each-iteration/_list diff --git a/test/chj-home-expected/--hunks/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/_list b/split-patch/test/chj-home-expected/--hunks/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/_list similarity index 100% rename from test/chj-home-expected/--hunks/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/_list rename to split-patch/test/chj-home-expected/--hunks/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration/_list diff --git a/test/chj-home-expected/--hunks/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0110-Revert-.bashrc-restructure-prompt-command/0110-Revert-.bashrc-restructure-prompt-command-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0110-Revert-.bashrc-restructure-prompt-command/_list b/split-patch/test/chj-home-expected/--hunks/0110-Revert-.bashrc-restructure-prompt-command/_list similarity index 100% rename from test/chj-home-expected/--hunks/0110-Revert-.bashrc-restructure-prompt-command/_list rename to split-patch/test/chj-home-expected/--hunks/0110-Revert-.bashrc-restructure-prompt-command/_list diff --git a/test/chj-home-expected/--hunks/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0111-.bashrc-does-not-work/0111-.bashrc-does-not-work-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0111-.bashrc-does-not-work/_list b/split-patch/test/chj-home-expected/--hunks/0111-.bashrc-does-not-work/_list similarity index 100% rename from test/chj-home-expected/--hunks/0111-.bashrc-does-not-work/_list rename to split-patch/test/chj-home-expected/--hunks/0111-.bashrc-does-not-work/_list diff --git a/test/chj-home-expected/--hunks/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0112-.bashrc-finally-working/0112-.bashrc-finally-working-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0112-.bashrc-finally-working/_list b/split-patch/test/chj-home-expected/--hunks/0112-.bashrc-finally-working/_list similarity index 100% rename from test/chj-home-expected/--hunks/0112-.bashrc-finally-working/_list rename to split-patch/test/chj-home-expected/--hunks/0112-.bashrc-finally-working/_list diff --git a/test/chj-home-expected/--hunks/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/_list b/split-patch/test/chj-home-expected/--hunks/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/_list similarity index 100% rename from test/chj-home-expected/--hunks/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/_list rename to split-patch/test/chj-home-expected/--hunks/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed/_list diff --git a/test/chj-home-expected/--hunks/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/_list b/split-patch/test/chj-home-expected/--hunks/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/_list similarity index 100% rename from test/chj-home-expected/--hunks/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/_list rename to split-patch/test/chj-home-expected/--hunks/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now/_list diff --git a/test/chj-home-expected/--hunks/0115-.bashrc-document-the-fix/0115-.bashrc-document-the-fix-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0115-.bashrc-document-the-fix/0115-.bashrc-document-the-fix-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0115-.bashrc-document-the-fix/0115-.bashrc-document-the-fix-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0115-.bashrc-document-the-fix/0115-.bashrc-document-the-fix-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0115-.bashrc-document-the-fix/_list b/split-patch/test/chj-home-expected/--hunks/0115-.bashrc-document-the-fix/_list similarity index 100% rename from test/chj-home-expected/--hunks/0115-.bashrc-document-the-fix/_list rename to split-patch/test/chj-home-expected/--hunks/0115-.bashrc-document-the-fix/_list diff --git a/test/chj-home-expected/--hunks/0116-.bash_profile-finally-remove-ulimit-again/0116-.bash_profile-finally-remove-ulimit-again-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0116-.bash_profile-finally-remove-ulimit-again/0116-.bash_profile-finally-remove-ulimit-again-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0116-.bash_profile-finally-remove-ulimit-again/0116-.bash_profile-finally-remove-ulimit-again-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0116-.bash_profile-finally-remove-ulimit-again/0116-.bash_profile-finally-remove-ulimit-again-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0116-.bash_profile-finally-remove-ulimit-again/_list b/split-patch/test/chj-home-expected/--hunks/0116-.bash_profile-finally-remove-ulimit-again/_list similarity index 100% rename from test/chj-home-expected/--hunks/0116-.bash_profile-finally-remove-ulimit-again/_list rename to split-patch/test/chj-home-expected/--hunks/0116-.bash_profile-finally-remove-ulimit-again/_list diff --git a/test/chj-home-expected/--hunks/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/0117-.bashrc-make-error-display-nicer-on-the-visual-syste-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/_list b/split-patch/test/chj-home-expected/--hunks/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/_list similarity index 100% rename from test/chj-home-expected/--hunks/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/_list rename to split-patch/test/chj-home-expected/--hunks/0117-.bashrc-make-error-display-nicer-on-the-visual-syste/_list diff --git a/test/chj-home-expected/--hunks/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0118-.bashrc-even-nicer/0118-.bashrc-even-nicer-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0118-.bashrc-even-nicer/_list b/split-patch/test/chj-home-expected/--hunks/0118-.bashrc-even-nicer/_list similarity index 100% rename from test/chj-home-expected/--hunks/0118-.bashrc-even-nicer/_list rename to split-patch/test/chj-home-expected/--hunks/0118-.bashrc-even-nicer/_list diff --git a/test/chj-home-expected/--hunks/0119-.bashrc-go-back-to-red/0119-.bashrc-go-back-to-red-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0119-.bashrc-go-back-to-red/0119-.bashrc-go-back-to-red-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0119-.bashrc-go-back-to-red/0119-.bashrc-go-back-to-red-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0119-.bashrc-go-back-to-red/0119-.bashrc-go-back-to-red-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0119-.bashrc-go-back-to-red/_list b/split-patch/test/chj-home-expected/--hunks/0119-.bashrc-go-back-to-red/_list similarity index 100% rename from test/chj-home-expected/--hunks/0119-.bashrc-go-back-to-red/_list rename to split-patch/test/chj-home-expected/--hunks/0119-.bashrc-go-back-to-red/_list diff --git a/test/chj-home-expected/--hunks/0120-Formatting/0120-Formatting-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0120-Formatting/0120-Formatting-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0120-Formatting/0120-Formatting-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0120-Formatting/0120-Formatting-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0120-Formatting/_list b/split-patch/test/chj-home-expected/--hunks/0120-Formatting/_list similarity index 100% rename from test/chj-home-expected/--hunks/0120-Formatting/_list rename to split-patch/test/chj-home-expected/--hunks/0120-Formatting/_list diff --git a/test/chj-home-expected/--hunks/0121-Abstraction/0121-Abstraction-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0121-Abstraction/0121-Abstraction-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0121-Abstraction/0121-Abstraction-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0121-Abstraction/0121-Abstraction-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0121-Abstraction/_list b/split-patch/test/chj-home-expected/--hunks/0121-Abstraction/_list similarity index 100% rename from test/chj-home-expected/--hunks/0121-Abstraction/_list rename to split-patch/test/chj-home-expected/--hunks/0121-Abstraction/_list diff --git a/test/chj-home-expected/--hunks/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/_list b/split-patch/test/chj-home-expected/--hunks/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/_list similarity index 100% rename from test/chj-home-expected/--hunks/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/_list rename to split-patch/test/chj-home-expected/--hunks/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders/_list diff --git a/test/chj-home-expected/--hunks/0123-.chj-home-init-rely-on-.METADATA-v2.options/0123-.chj-home-init-rely-on-.METADATA-v2.options-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0123-.chj-home-init-rely-on-.METADATA-v2.options/0123-.chj-home-init-rely-on-.METADATA-v2.options-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0123-.chj-home-init-rely-on-.METADATA-v2.options/0123-.chj-home-init-rely-on-.METADATA-v2.options-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0123-.chj-home-init-rely-on-.METADATA-v2.options/0123-.chj-home-init-rely-on-.METADATA-v2.options-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0123-.chj-home-init-rely-on-.METADATA-v2.options/_list b/split-patch/test/chj-home-expected/--hunks/0123-.chj-home-init-rely-on-.METADATA-v2.options/_list similarity index 100% rename from test/chj-home-expected/--hunks/0123-.chj-home-init-rely-on-.METADATA-v2.options/_list rename to split-patch/test/chj-home-expected/--hunks/0123-.chj-home-init-rely-on-.METADATA-v2.options/_list diff --git a/test/chj-home-expected/--hunks/0124-.chj-home-init-make-.METADATA-v2.ignore-too/0124-.chj-home-init-make-.METADATA-v2.ignore-too-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0124-.chj-home-init-make-.METADATA-v2.ignore-too/0124-.chj-home-init-make-.METADATA-v2.ignore-too-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0124-.chj-home-init-make-.METADATA-v2.ignore-too/0124-.chj-home-init-make-.METADATA-v2.ignore-too-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0124-.chj-home-init-make-.METADATA-v2.ignore-too/0124-.chj-home-init-make-.METADATA-v2.ignore-too-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0124-.chj-home-init-make-.METADATA-v2.ignore-too/_list b/split-patch/test/chj-home-expected/--hunks/0124-.chj-home-init-make-.METADATA-v2.ignore-too/_list similarity index 100% rename from test/chj-home-expected/--hunks/0124-.chj-home-init-make-.METADATA-v2.ignore-too/_list rename to split-patch/test/chj-home-expected/--hunks/0124-.chj-home-init-make-.METADATA-v2.ignore-too/_list diff --git a/test/chj-home-expected/--hunks/0125-.xscreensaver/0125-.xscreensaver-.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--hunks/0125-.xscreensaver/0125-.xscreensaver-.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0125-.xscreensaver/0125-.xscreensaver-.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--hunks/0125-.xscreensaver/0125-.xscreensaver-.xscreensaver-000.patch diff --git a/test/chj-home-expected/--hunks/0125-.xscreensaver/_list b/split-patch/test/chj-home-expected/--hunks/0125-.xscreensaver/_list similarity index 100% rename from test/chj-home-expected/--hunks/0125-.xscreensaver/_list rename to split-patch/test/chj-home-expected/--hunks/0125-.xscreensaver/_list diff --git a/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-000.patch b/split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-000.patch rename to split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-000.patch diff --git a/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-001.patch b/split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-001.patch rename to split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-001.patch diff --git a/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-002.patch b/split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-002.patch similarity index 100% rename from test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-002.patch rename to split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-002.patch diff --git a/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-003.patch b/split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-003.patch similarity index 100% rename from test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-003.patch rename to split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-003.patch diff --git a/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-004.patch b/split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-004.patch similarity index 100% rename from test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-004.patch rename to split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-004.patch diff --git a/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-005.patch b/split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-005.patch similarity index 100% rename from test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-005.patch rename to split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-005.patch diff --git a/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-006.patch b/split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-006.patch similarity index 100% rename from test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-006.patch rename to split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.chj-home_dot.xscreensaver-dull-006.patch diff --git a/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/0126-Move-.xscreensaver-to-.chj-home-again-.xscreensaver-000.patch diff --git a/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/_list b/split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/_list similarity index 100% rename from test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/_list rename to split-patch/test/chj-home-expected/--hunks/0126-Move-.xscreensaver-to-.chj-home-again/_list diff --git a/test/chj-home-expected/--hunks/0127-Rename/_list b/split-patch/test/chj-home-expected/--hunks/0127-Rename/_list similarity index 100% rename from test/chj-home-expected/--hunks/0127-Rename/_list rename to split-patch/test/chj-home-expected/--hunks/0127-Rename/_list diff --git a/test/chj-home-expected/--hunks/0128-init-install-.xscreensaver-if-not-already-exists/0128-init-install-.xscreensaver-if-not-already-exists-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0128-init-install-.xscreensaver-if-not-already-exists/0128-init-install-.xscreensaver-if-not-already-exists-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0128-init-install-.xscreensaver-if-not-already-exists/0128-init-install-.xscreensaver-if-not-already-exists-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0128-init-install-.xscreensaver-if-not-already-exists/0128-init-install-.xscreensaver-if-not-already-exists-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0128-init-install-.xscreensaver-if-not-already-exists/_list b/split-patch/test/chj-home-expected/--hunks/0128-init-install-.xscreensaver-if-not-already-exists/_list similarity index 100% rename from test/chj-home-expected/--hunks/0128-init-install-.xscreensaver-if-not-already-exists/_list rename to split-patch/test/chj-home-expected/--hunks/0128-init-install-.xscreensaver-if-not-already-exists/_list diff --git a/test/chj-home-expected/--hunks/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0129-init-more-fix-perms/0129-init-more-fix-perms-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0129-init-more-fix-perms/_list b/split-patch/test/chj-home-expected/--hunks/0129-init-more-fix-perms/_list similarity index 100% rename from test/chj-home-expected/--hunks/0129-init-more-fix-perms/_list rename to split-patch/test/chj-home-expected/--hunks/0129-init-more-fix-perms/_list diff --git a/test/chj-home-expected/--hunks/0130-.bashrc-add-j-same-as-cj/0130-.bashrc-add-j-same-as-cj-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0130-.bashrc-add-j-same-as-cj/0130-.bashrc-add-j-same-as-cj-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0130-.bashrc-add-j-same-as-cj/0130-.bashrc-add-j-same-as-cj-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0130-.bashrc-add-j-same-as-cj/0130-.bashrc-add-j-same-as-cj-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0130-.bashrc-add-j-same-as-cj/_list b/split-patch/test/chj-home-expected/--hunks/0130-.bashrc-add-j-same-as-cj/_list similarity index 100% rename from test/chj-home-expected/--hunks/0130-.bashrc-add-j-same-as-cj/_list rename to split-patch/test/chj-home-expected/--hunks/0130-.bashrc-add-j-same-as-cj/_list diff --git a/test/chj-home-expected/--hunks/0131-.bashrc-add-cgdi/0131-.bashrc-add-cgdi-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0131-.bashrc-add-cgdi/0131-.bashrc-add-cgdi-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0131-.bashrc-add-cgdi/0131-.bashrc-add-cgdi-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0131-.bashrc-add-cgdi/0131-.bashrc-add-cgdi-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0131-.bashrc-add-cgdi/_list b/split-patch/test/chj-home-expected/--hunks/0131-.bashrc-add-cgdi/_list similarity index 100% rename from test/chj-home-expected/--hunks/0131-.bashrc-add-cgdi/_list rename to split-patch/test/chj-home-expected/--hunks/0131-.bashrc-add-cgdi/_list diff --git a/test/chj-home-expected/--hunks/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0132-.bashrc-cgdi-fix-proper-error-handling/0132-.bashrc-cgdi-fix-proper-error-handling-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0132-.bashrc-cgdi-fix-proper-error-handling/_list b/split-patch/test/chj-home-expected/--hunks/0132-.bashrc-cgdi-fix-proper-error-handling/_list similarity index 100% rename from test/chj-home-expected/--hunks/0132-.bashrc-cgdi-fix-proper-error-handling/_list rename to split-patch/test/chj-home-expected/--hunks/0132-.bashrc-cgdi-fix-proper-error-handling/_list diff --git a/test/chj-home-expected/--hunks/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-001.patch b/split-patch/test/chj-home-expected/--hunks/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-001.patch rename to split-patch/test/chj-home-expected/--hunks/0133-.bashrc-add-cgd/0133-.bashrc-add-cgd-.bashrc-001.patch diff --git a/test/chj-home-expected/--hunks/0133-.bashrc-add-cgd/_list b/split-patch/test/chj-home-expected/--hunks/0133-.bashrc-add-cgd/_list similarity index 100% rename from test/chj-home-expected/--hunks/0133-.bashrc-add-cgd/_list rename to split-patch/test/chj-home-expected/--hunks/0133-.bashrc-add-cgd/_list diff --git a/test/chj-home-expected/--hunks/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--hunks/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--hunks/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-000.patch diff --git a/test/chj-home-expected/--hunks/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-001.patch b/split-patch/test/chj-home-expected/--hunks/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-001.patch rename to split-patch/test/chj-home-expected/--hunks/0134-.xscreensaver-blank-and-off-fast/0134-.xscreensaver-blank-and-off-fast-.chj-home_.xscreensaver-001.patch diff --git a/test/chj-home-expected/--hunks/0134-.xscreensaver-blank-and-off-fast/_list b/split-patch/test/chj-home-expected/--hunks/0134-.xscreensaver-blank-and-off-fast/_list similarity index 100% rename from test/chj-home-expected/--hunks/0134-.xscreensaver-blank-and-off-fast/_list rename to split-patch/test/chj-home-expected/--hunks/0134-.xscreensaver-blank-and-off-fast/_list diff --git a/test/chj-home-expected/--hunks/0135-Add-cgi-cgii/0135-Add-cgi-cgii-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0135-Add-cgi-cgii/0135-Add-cgi-cgii-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0135-Add-cgi-cgii/0135-Add-cgi-cgii-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0135-Add-cgi-cgii/0135-Add-cgi-cgii-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0135-Add-cgi-cgii/_list b/split-patch/test/chj-home-expected/--hunks/0135-Add-cgi-cgii/_list similarity index 100% rename from test/chj-home-expected/--hunks/0135-Add-cgi-cgii/_list rename to split-patch/test/chj-home-expected/--hunks/0135-Add-cgi-cgii/_list diff --git a/test/chj-home-expected/--hunks/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--hunks/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--hunks/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-000.patch diff --git a/test/chj-home-expected/--hunks/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-001.patch b/split-patch/test/chj-home-expected/--hunks/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-001.patch rename to split-patch/test/chj-home-expected/--hunks/0136-.xscreensaver-oh-that-was-bad-try-this/0136-.xscreensaver-oh-that-was-bad-try-this-.chj-home_.xscreensaver-001.patch diff --git a/test/chj-home-expected/--hunks/0136-.xscreensaver-oh-that-was-bad-try-this/_list b/split-patch/test/chj-home-expected/--hunks/0136-.xscreensaver-oh-that-was-bad-try-this/_list similarity index 100% rename from test/chj-home-expected/--hunks/0136-.xscreensaver-oh-that-was-bad-try-this/_list rename to split-patch/test/chj-home-expected/--hunks/0136-.xscreensaver-oh-that-was-bad-try-this/_list diff --git a/test/chj-home-expected/--hunks/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--hunks/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--hunks/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-000.patch diff --git a/test/chj-home-expected/--hunks/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-001.patch b/split-patch/test/chj-home-expected/--hunks/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-001.patch rename to split-patch/test/chj-home-expected/--hunks/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/0137-.xscreensaver-more-trying-to-get-it-to-turn-off-.chj-home_.xscreensaver-001.patch diff --git a/test/chj-home-expected/--hunks/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/_list b/split-patch/test/chj-home-expected/--hunks/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/_list similarity index 100% rename from test/chj-home-expected/--hunks/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/_list rename to split-patch/test/chj-home-expected/--hunks/0137-.xscreensaver-more-trying-to-get-it-to-turn-off/_list diff --git a/test/chj-home-expected/--hunks/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--hunks/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--hunks/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-000.patch diff --git a/test/chj-home-expected/--hunks/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-001.patch b/split-patch/test/chj-home-expected/--hunks/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-001.patch rename to split-patch/test/chj-home-expected/--hunks/0138-.xscreensaver-turn-off-dpms/0138-.xscreensaver-turn-off-dpms-.chj-home_.xscreensaver-001.patch diff --git a/test/chj-home-expected/--hunks/0138-.xscreensaver-turn-off-dpms/_list b/split-patch/test/chj-home-expected/--hunks/0138-.xscreensaver-turn-off-dpms/_list similarity index 100% rename from test/chj-home-expected/--hunks/0138-.xscreensaver-turn-off-dpms/_list rename to split-patch/test/chj-home-expected/--hunks/0138-.xscreensaver-turn-off-dpms/_list diff --git a/test/chj-home-expected/--hunks/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-000.patch b/split-patch/test/chj-home-expected/--hunks/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-000.patch rename to split-patch/test/chj-home-expected/--hunks/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-000.patch diff --git a/test/chj-home-expected/--hunks/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-001.patch b/split-patch/test/chj-home-expected/--hunks/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-001.patch rename to split-patch/test/chj-home-expected/--hunks/0139-.xscreensaver-blank-only/0139-.xscreensaver-blank-only-.chj-home_.xscreensaver-001.patch diff --git a/test/chj-home-expected/--hunks/0139-.xscreensaver-blank-only/_list b/split-patch/test/chj-home-expected/--hunks/0139-.xscreensaver-blank-only/_list similarity index 100% rename from test/chj-home-expected/--hunks/0139-.xscreensaver-blank-only/_list rename to split-patch/test/chj-home-expected/--hunks/0139-.xscreensaver-blank-only/_list diff --git a/test/chj-home-expected/--hunks/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_.gdbinit-000.patch b/split-patch/test/chj-home-expected/--hunks/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_.gdbinit-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_.gdbinit-000.patch rename to split-patch/test/chj-home-expected/--hunks/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_.gdbinit-000.patch diff --git a/test/chj-home-expected/--hunks/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0140-Add-a-default-.gdbinit/0140-Add-a-default-.gdbinit-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0140-Add-a-default-.gdbinit/_list b/split-patch/test/chj-home-expected/--hunks/0140-Add-a-default-.gdbinit/_list similarity index 100% rename from test/chj-home-expected/--hunks/0140-Add-a-default-.gdbinit/_list rename to split-patch/test/chj-home-expected/--hunks/0140-Add-a-default-.gdbinit/_list diff --git a/test/chj-home-expected/--hunks/0141-Set-BROWSER-to-firefox-by-default/0141-Set-BROWSER-to-firefox-by-default-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0141-Set-BROWSER-to-firefox-by-default/0141-Set-BROWSER-to-firefox-by-default-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0141-Set-BROWSER-to-firefox-by-default/0141-Set-BROWSER-to-firefox-by-default-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0141-Set-BROWSER-to-firefox-by-default/0141-Set-BROWSER-to-firefox-by-default-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0141-Set-BROWSER-to-firefox-by-default/_list b/split-patch/test/chj-home-expected/--hunks/0141-Set-BROWSER-to-firefox-by-default/_list similarity index 100% rename from test/chj-home-expected/--hunks/0141-Set-BROWSER-to-firefox-by-default/_list rename to split-patch/test/chj-home-expected/--hunks/0141-Set-BROWSER-to-firefox-by-default/_list diff --git a/test/chj-home-expected/--hunks/0142-.bashrc-remove-j-again-not-using-it/0142-.bashrc-remove-j-again-not-using-it-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0142-.bashrc-remove-j-again-not-using-it/0142-.bashrc-remove-j-again-not-using-it-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0142-.bashrc-remove-j-again-not-using-it/0142-.bashrc-remove-j-again-not-using-it-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0142-.bashrc-remove-j-again-not-using-it/0142-.bashrc-remove-j-again-not-using-it-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0142-.bashrc-remove-j-again-not-using-it/_list b/split-patch/test/chj-home-expected/--hunks/0142-.bashrc-remove-j-again-not-using-it/_list similarity index 100% rename from test/chj-home-expected/--hunks/0142-.bashrc-remove-j-again-not-using-it/_list rename to split-patch/test/chj-home-expected/--hunks/0142-.bashrc-remove-j-again-not-using-it/_list diff --git a/test/chj-home-expected/--hunks/0143-.bashrc-add-ce/0143-.bashrc-add-ce-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0143-.bashrc-add-ce/0143-.bashrc-add-ce-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0143-.bashrc-add-ce/0143-.bashrc-add-ce-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0143-.bashrc-add-ce/0143-.bashrc-add-ce-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0143-.bashrc-add-ce/_list b/split-patch/test/chj-home-expected/--hunks/0143-.bashrc-add-ce/_list similarity index 100% rename from test/chj-home-expected/--hunks/0143-.bashrc-add-ce/_list rename to split-patch/test/chj-home-expected/--hunks/0143-.bashrc-add-ce/_list diff --git a/test/chj-home-expected/--hunks/0144-.bashrc-add-cdnn-cdnnn/0144-.bashrc-add-cdnn-cdnnn-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0144-.bashrc-add-cdnn-cdnnn/0144-.bashrc-add-cdnn-cdnnn-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0144-.bashrc-add-cdnn-cdnnn/0144-.bashrc-add-cdnn-cdnnn-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0144-.bashrc-add-cdnn-cdnnn/0144-.bashrc-add-cdnn-cdnnn-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0144-.bashrc-add-cdnn-cdnnn/_list b/split-patch/test/chj-home-expected/--hunks/0144-.bashrc-add-cdnn-cdnnn/_list similarity index 100% rename from test/chj-home-expected/--hunks/0144-.bashrc-add-cdnn-cdnnn/_list rename to split-patch/test/chj-home-expected/--hunks/0144-.bashrc-add-cdnn-cdnnn/_list diff --git a/test/chj-home-expected/--hunks/0145-Change-background-color-for-errors-to-bright-yellow/0145-Change-background-color-for-errors-to-bright-yellow-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0145-Change-background-color-for-errors-to-bright-yellow/0145-Change-background-color-for-errors-to-bright-yellow-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0145-Change-background-color-for-errors-to-bright-yellow/0145-Change-background-color-for-errors-to-bright-yellow-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0145-Change-background-color-for-errors-to-bright-yellow/0145-Change-background-color-for-errors-to-bright-yellow-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0145-Change-background-color-for-errors-to-bright-yellow/_list b/split-patch/test/chj-home-expected/--hunks/0145-Change-background-color-for-errors-to-bright-yellow/_list similarity index 100% rename from test/chj-home-expected/--hunks/0145-Change-background-color-for-errors-to-bright-yellow/_list rename to split-patch/test/chj-home-expected/--hunks/0145-Change-background-color-for-errors-to-bright-yellow/_list diff --git a/test/chj-home-expected/--hunks/0146-Background-orange/0146-Background-orange-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0146-Background-orange/0146-Background-orange-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0146-Background-orange/0146-Background-orange-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0146-Background-orange/0146-Background-orange-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0146-Background-orange/_list b/split-patch/test/chj-home-expected/--hunks/0146-Background-orange/_list similarity index 100% rename from test/chj-home-expected/--hunks/0146-Background-orange/_list rename to split-patch/test/chj-home-expected/--hunks/0146-Background-orange/_list diff --git a/test/chj-home-expected/--hunks/0147-Revert-Background-orange/0147-Revert-Background-orange-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0147-Revert-Background-orange/0147-Revert-Background-orange-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0147-Revert-Background-orange/0147-Revert-Background-orange-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0147-Revert-Background-orange/0147-Revert-Background-orange-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0147-Revert-Background-orange/_list b/split-patch/test/chj-home-expected/--hunks/0147-Revert-Background-orange/_list similarity index 100% rename from test/chj-home-expected/--hunks/0147-Revert-Background-orange/_list rename to split-patch/test/chj-home-expected/--hunks/0147-Revert-Background-orange/_list diff --git a/test/chj-home-expected/--hunks/0148-Change-background-back-to-red/0148-Change-background-back-to-red-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0148-Change-background-back-to-red/0148-Change-background-back-to-red-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0148-Change-background-back-to-red/0148-Change-background-back-to-red-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0148-Change-background-back-to-red/0148-Change-background-back-to-red-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0148-Change-background-back-to-red/_list b/split-patch/test/chj-home-expected/--hunks/0148-Change-background-back-to-red/_list similarity index 100% rename from test/chj-home-expected/--hunks/0148-Change-background-back-to-red/_list rename to split-patch/test/chj-home-expected/--hunks/0148-Change-background-back-to-red/_list diff --git a/test/chj-home-expected/--hunks/0149-.bashrc-wg-is-also-provided-by-wireguard-now/0149-.bashrc-wg-is-also-provided-by-wireguard-now-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0149-.bashrc-wg-is-also-provided-by-wireguard-now/0149-.bashrc-wg-is-also-provided-by-wireguard-now-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0149-.bashrc-wg-is-also-provided-by-wireguard-now/0149-.bashrc-wg-is-also-provided-by-wireguard-now-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0149-.bashrc-wg-is-also-provided-by-wireguard-now/0149-.bashrc-wg-is-also-provided-by-wireguard-now-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0149-.bashrc-wg-is-also-provided-by-wireguard-now/_list b/split-patch/test/chj-home-expected/--hunks/0149-.bashrc-wg-is-also-provided-by-wireguard-now/_list similarity index 100% rename from test/chj-home-expected/--hunks/0149-.bashrc-wg-is-also-provided-by-wireguard-now/_list rename to split-patch/test/chj-home-expected/--hunks/0149-.bashrc-wg-is-also-provided-by-wireguard-now/_list diff --git a/test/chj-home-expected/--hunks/0150-.bashrc-replace-ad-hoc-code-with-lastdir/0150-.bashrc-replace-ad-hoc-code-with-lastdir-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0150-.bashrc-replace-ad-hoc-code-with-lastdir/0150-.bashrc-replace-ad-hoc-code-with-lastdir-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0150-.bashrc-replace-ad-hoc-code-with-lastdir/0150-.bashrc-replace-ad-hoc-code-with-lastdir-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0150-.bashrc-replace-ad-hoc-code-with-lastdir/0150-.bashrc-replace-ad-hoc-code-with-lastdir-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0150-.bashrc-replace-ad-hoc-code-with-lastdir/_list b/split-patch/test/chj-home-expected/--hunks/0150-.bashrc-replace-ad-hoc-code-with-lastdir/_list similarity index 100% rename from test/chj-home-expected/--hunks/0150-.bashrc-replace-ad-hoc-code-with-lastdir/_list rename to split-patch/test/chj-home-expected/--hunks/0150-.bashrc-replace-ad-hoc-code-with-lastdir/_list diff --git a/test/chj-home-expected/--hunks/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0151-.bashrc-cgd-accept-index-argument/0151-.bashrc-cgd-accept-index-argument-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0151-.bashrc-cgd-accept-index-argument/_list b/split-patch/test/chj-home-expected/--hunks/0151-.bashrc-cgd-accept-index-argument/_list similarity index 100% rename from test/chj-home-expected/--hunks/0151-.bashrc-cgd-accept-index-argument/_list rename to split-patch/test/chj-home-expected/--hunks/0151-.bashrc-cgd-accept-index-argument/_list diff --git a/test/chj-home-expected/--hunks/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/_list b/split-patch/test/chj-home-expected/--hunks/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/_list similarity index 100% rename from test/chj-home-expected/--hunks/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/_list rename to split-patch/test/chj-home-expected/--hunks/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index/_list diff --git a/test/chj-home-expected/--hunks/0153-.bashrc-add-ct/0153-.bashrc-add-ct-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0153-.bashrc-add-ct/0153-.bashrc-add-ct-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0153-.bashrc-add-ct/0153-.bashrc-add-ct-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0153-.bashrc-add-ct/0153-.bashrc-add-ct-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0153-.bashrc-add-ct/_list b/split-patch/test/chj-home-expected/--hunks/0153-.bashrc-add-ct/_list similarity index 100% rename from test/chj-home-expected/--hunks/0153-.bashrc-add-ct/_list rename to split-patch/test/chj-home-expected/--hunks/0153-.bashrc-add-ct/_list diff --git a/test/chj-home-expected/--hunks/0154-.bashrc-update-for-lastitem-from-chj-rustbin/0154-.bashrc-update-for-lastitem-from-chj-rustbin-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0154-.bashrc-update-for-lastitem-from-chj-rustbin/0154-.bashrc-update-for-lastitem-from-chj-rustbin-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0154-.bashrc-update-for-lastitem-from-chj-rustbin/0154-.bashrc-update-for-lastitem-from-chj-rustbin-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0154-.bashrc-update-for-lastitem-from-chj-rustbin/0154-.bashrc-update-for-lastitem-from-chj-rustbin-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0154-.bashrc-update-for-lastitem-from-chj-rustbin/_list b/split-patch/test/chj-home-expected/--hunks/0154-.bashrc-update-for-lastitem-from-chj-rustbin/_list similarity index 100% rename from test/chj-home-expected/--hunks/0154-.bashrc-update-for-lastitem-from-chj-rustbin/_list rename to split-patch/test/chj-home-expected/--hunks/0154-.bashrc-update-for-lastitem-from-chj-rustbin/_list diff --git a/test/chj-home-expected/--hunks/0155-.Xresources-finally-make-rxvt-a-bit-larger/0155-.Xresources-finally-make-rxvt-a-bit-larger-.Xresources-000.patch b/split-patch/test/chj-home-expected/--hunks/0155-.Xresources-finally-make-rxvt-a-bit-larger/0155-.Xresources-finally-make-rxvt-a-bit-larger-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0155-.Xresources-finally-make-rxvt-a-bit-larger/0155-.Xresources-finally-make-rxvt-a-bit-larger-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--hunks/0155-.Xresources-finally-make-rxvt-a-bit-larger/0155-.Xresources-finally-make-rxvt-a-bit-larger-.Xresources-000.patch diff --git a/test/chj-home-expected/--hunks/0155-.Xresources-finally-make-rxvt-a-bit-larger/_list b/split-patch/test/chj-home-expected/--hunks/0155-.Xresources-finally-make-rxvt-a-bit-larger/_list similarity index 100% rename from test/chj-home-expected/--hunks/0155-.Xresources-finally-make-rxvt-a-bit-larger/_list rename to split-patch/test/chj-home-expected/--hunks/0155-.Xresources-finally-make-rxvt-a-bit-larger/_list diff --git a/test/chj-home-expected/--hunks/0156-.xmodmaprc-change-print-screen-button-back-to-Print/0156-.xmodmaprc-change-print-screen-button-back-to-Print-.xmodmaprc-000.patch b/split-patch/test/chj-home-expected/--hunks/0156-.xmodmaprc-change-print-screen-button-back-to-Print/0156-.xmodmaprc-change-print-screen-button-back-to-Print-.xmodmaprc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0156-.xmodmaprc-change-print-screen-button-back-to-Print/0156-.xmodmaprc-change-print-screen-button-back-to-Print-.xmodmaprc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0156-.xmodmaprc-change-print-screen-button-back-to-Print/0156-.xmodmaprc-change-print-screen-button-back-to-Print-.xmodmaprc-000.patch diff --git a/test/chj-home-expected/--hunks/0156-.xmodmaprc-change-print-screen-button-back-to-Print/_list b/split-patch/test/chj-home-expected/--hunks/0156-.xmodmaprc-change-print-screen-button-back-to-Print/_list similarity index 100% rename from test/chj-home-expected/--hunks/0156-.xmodmaprc-change-print-screen-button-back-to-Print/_list rename to split-patch/test/chj-home-expected/--hunks/0156-.xmodmaprc-change-print-screen-button-back-to-Print/_list diff --git a/test/chj-home-expected/--hunks/0157-.bash_profile-add-my-new-key-fingerprint/0157-.bash_profile-add-my-new-key-fingerprint-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0157-.bash_profile-add-my-new-key-fingerprint/0157-.bash_profile-add-my-new-key-fingerprint-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0157-.bash_profile-add-my-new-key-fingerprint/0157-.bash_profile-add-my-new-key-fingerprint-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0157-.bash_profile-add-my-new-key-fingerprint/0157-.bash_profile-add-my-new-key-fingerprint-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0157-.bash_profile-add-my-new-key-fingerprint/_list b/split-patch/test/chj-home-expected/--hunks/0157-.bash_profile-add-my-new-key-fingerprint/_list similarity index 100% rename from test/chj-home-expected/--hunks/0157-.bash_profile-add-my-new-key-fingerprint/_list rename to split-patch/test/chj-home-expected/--hunks/0157-.bash_profile-add-my-new-key-fingerprint/_list diff --git a/test/chj-home-expected/--hunks/0158-.chj-home-init-Git-rebase-false/0158-.chj-home-init-Git-rebase-false-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0158-.chj-home-init-Git-rebase-false/0158-.chj-home-init-Git-rebase-false-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0158-.chj-home-init-Git-rebase-false/0158-.chj-home-init-Git-rebase-false-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0158-.chj-home-init-Git-rebase-false/0158-.chj-home-init-Git-rebase-false-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0158-.chj-home-init-Git-rebase-false/_list b/split-patch/test/chj-home-expected/--hunks/0158-.chj-home-init-Git-rebase-false/_list similarity index 100% rename from test/chj-home-expected/--hunks/0158-.chj-home-init-Git-rebase-false/_list rename to split-patch/test/chj-home-expected/--hunks/0158-.chj-home-init-Git-rebase-false/_list diff --git a/test/chj-home-expected/--hunks/0159-.gitignore_global-C-development/0159-.gitignore_global-C-development-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--hunks/0159-.gitignore_global-C-development/0159-.gitignore_global-C-development-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0159-.gitignore_global-C-development/0159-.gitignore_global-C-development-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--hunks/0159-.gitignore_global-C-development/0159-.gitignore_global-C-development-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--hunks/0159-.gitignore_global-C-development/_list b/split-patch/test/chj-home-expected/--hunks/0159-.gitignore_global-C-development/_list similarity index 100% rename from test/chj-home-expected/--hunks/0159-.gitignore_global-C-development/_list rename to split-patch/test/chj-home-expected/--hunks/0159-.gitignore_global-C-development/_list diff --git a/test/chj-home-expected/--hunks/0160-.bashrc-update-wg-alias/0160-.bashrc-update-wg-alias-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0160-.bashrc-update-wg-alias/0160-.bashrc-update-wg-alias-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0160-.bashrc-update-wg-alias/0160-.bashrc-update-wg-alias-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0160-.bashrc-update-wg-alias/0160-.bashrc-update-wg-alias-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0160-.bashrc-update-wg-alias/_list b/split-patch/test/chj-home-expected/--hunks/0160-.bashrc-update-wg-alias/_list similarity index 100% rename from test/chj-home-expected/--hunks/0160-.bashrc-update-wg-alias/_list rename to split-patch/test/chj-home-expected/--hunks/0160-.bashrc-update-wg-alias/_list diff --git a/test/chj-home-expected/--hunks/0161-init-remove-xemacs-setup/0161-init-remove-xemacs-setup-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0161-init-remove-xemacs-setup/0161-init-remove-xemacs-setup-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0161-init-remove-xemacs-setup/0161-init-remove-xemacs-setup-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0161-init-remove-xemacs-setup/0161-init-remove-xemacs-setup-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0161-init-remove-xemacs-setup/_list b/split-patch/test/chj-home-expected/--hunks/0161-init-remove-xemacs-setup/_list similarity index 100% rename from test/chj-home-expected/--hunks/0161-init-remove-xemacs-setup/_list rename to split-patch/test/chj-home-expected/--hunks/0161-init-remove-xemacs-setup/_list diff --git a/test/chj-home-expected/--hunks/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-001.patch b/split-patch/test/chj-home-expected/--hunks/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-001.patch rename to split-patch/test/chj-home-expected/--hunks/0162-init-clone-chj-emacs-per-user-now/0162-init-clone-chj-emacs-per-user-now-.chj-home_init-001.patch diff --git a/test/chj-home-expected/--hunks/0162-init-clone-chj-emacs-per-user-now/_list b/split-patch/test/chj-home-expected/--hunks/0162-init-clone-chj-emacs-per-user-now/_list similarity index 100% rename from test/chj-home-expected/--hunks/0162-init-clone-chj-emacs-per-user-now/_list rename to split-patch/test/chj-home-expected/--hunks/0162-init-clone-chj-emacs-per-user-now/_list diff --git a/test/chj-home-expected/--hunks/0163-init-actually-do-need-to-import-the-other-key-as-wel/0163-init-actually-do-need-to-import-the-other-key-as-wel-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0163-init-actually-do-need-to-import-the-other-key-as-wel/0163-init-actually-do-need-to-import-the-other-key-as-wel-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0163-init-actually-do-need-to-import-the-other-key-as-wel/0163-init-actually-do-need-to-import-the-other-key-as-wel-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0163-init-actually-do-need-to-import-the-other-key-as-wel/0163-init-actually-do-need-to-import-the-other-key-as-wel-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0163-init-actually-do-need-to-import-the-other-key-as-wel/_list b/split-patch/test/chj-home-expected/--hunks/0163-init-actually-do-need-to-import-the-other-key-as-wel/_list similarity index 100% rename from test/chj-home-expected/--hunks/0163-init-actually-do-need-to-import-the-other-key-as-wel/_list rename to split-patch/test/chj-home-expected/--hunks/0163-init-actually-do-need-to-import-the-other-key-as-wel/_list diff --git a/test/chj-home-expected/--hunks/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/0164-.bash_profile-add-dir-to-newest-clang-to-PATH-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/0164-.bash_profile-add-dir-to-newest-clang-to-PATH-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/0164-.bash_profile-add-dir-to-newest-clang-to-PATH-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/0164-.bash_profile-add-dir-to-newest-clang-to-PATH-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/_list b/split-patch/test/chj-home-expected/--hunks/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/_list similarity index 100% rename from test/chj-home-expected/--hunks/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/_list rename to split-patch/test/chj-home-expected/--hunks/0164-.bash_profile-add-dir-to-newest-clang-to-PATH/_list diff --git a/test/chj-home-expected/--hunks/0165-.bash_profile-increase-history-size-even-more/0165-.bash_profile-increase-history-size-even-more-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0165-.bash_profile-increase-history-size-even-more/0165-.bash_profile-increase-history-size-even-more-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0165-.bash_profile-increase-history-size-even-more/0165-.bash_profile-increase-history-size-even-more-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0165-.bash_profile-increase-history-size-even-more/0165-.bash_profile-increase-history-size-even-more-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0165-.bash_profile-increase-history-size-even-more/_list b/split-patch/test/chj-home-expected/--hunks/0165-.bash_profile-increase-history-size-even-more/_list similarity index 100% rename from test/chj-home-expected/--hunks/0165-.bash_profile-increase-history-size-even-more/_list rename to split-patch/test/chj-home-expected/--hunks/0165-.bash_profile-increase-history-size-even-more/_list diff --git a/test/chj-home-expected/--hunks/0166-remove-emacs-geometry/0166-remove-emacs-geometry-.Xresources-000.patch b/split-patch/test/chj-home-expected/--hunks/0166-remove-emacs-geometry/0166-remove-emacs-geometry-.Xresources-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0166-remove-emacs-geometry/0166-remove-emacs-geometry-.Xresources-000.patch rename to split-patch/test/chj-home-expected/--hunks/0166-remove-emacs-geometry/0166-remove-emacs-geometry-.Xresources-000.patch diff --git a/test/chj-home-expected/--hunks/0166-remove-emacs-geometry/_list b/split-patch/test/chj-home-expected/--hunks/0166-remove-emacs-geometry/_list similarity index 100% rename from test/chj-home-expected/--hunks/0166-remove-emacs-geometry/_list rename to split-patch/test/chj-home-expected/--hunks/0166-remove-emacs-geometry/_list diff --git a/test/chj-home-expected/--hunks/0167-.bashrc-add-ul/0167-.bashrc-add-ul-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0167-.bashrc-add-ul/0167-.bashrc-add-ul-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0167-.bashrc-add-ul/0167-.bashrc-add-ul-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0167-.bashrc-add-ul/0167-.bashrc-add-ul-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0167-.bashrc-add-ul/_list b/split-patch/test/chj-home-expected/--hunks/0167-.bashrc-add-ul/_list similarity index 100% rename from test/chj-home-expected/--hunks/0167-.bashrc-add-ul/_list rename to split-patch/test/chj-home-expected/--hunks/0167-.bashrc-add-ul/_list diff --git a/test/chj-home-expected/--hunks/0168-Add-.xmodmaprc_laptopkeyboard/0168-Add-.xmodmaprc_laptopkeyboard-.xmodmaprc_laptopkeyboard-000.patch b/split-patch/test/chj-home-expected/--hunks/0168-Add-.xmodmaprc_laptopkeyboard/0168-Add-.xmodmaprc_laptopkeyboard-.xmodmaprc_laptopkeyboard-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0168-Add-.xmodmaprc_laptopkeyboard/0168-Add-.xmodmaprc_laptopkeyboard-.xmodmaprc_laptopkeyboard-000.patch rename to split-patch/test/chj-home-expected/--hunks/0168-Add-.xmodmaprc_laptopkeyboard/0168-Add-.xmodmaprc_laptopkeyboard-.xmodmaprc_laptopkeyboard-000.patch diff --git a/test/chj-home-expected/--hunks/0168-Add-.xmodmaprc_laptopkeyboard/_list b/split-patch/test/chj-home-expected/--hunks/0168-Add-.xmodmaprc_laptopkeyboard/_list similarity index 100% rename from test/chj-home-expected/--hunks/0168-Add-.xmodmaprc_laptopkeyboard/_list rename to split-patch/test/chj-home-expected/--hunks/0168-Add-.xmodmaprc_laptopkeyboard/_list diff --git a/test/chj-home-expected/--hunks/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.festivaldays.tsv-000.patch b/split-patch/test/chj-home-expected/--hunks/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.festivaldays.tsv-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.festivaldays.tsv-000.patch rename to split-patch/test/chj-home-expected/--hunks/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.festivaldays.tsv-000.patch diff --git a/test/chj-home-expected/--hunks/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.holidays.tsv-000.patch b/split-patch/test/chj-home-expected/--hunks/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.holidays.tsv-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.holidays.tsv-000.patch rename to split-patch/test/chj-home-expected/--hunks/0169-Add-holidays-in-Switzerland/0169-Add-holidays-in-Switzerland-.holidays.tsv-000.patch diff --git a/test/chj-home-expected/--hunks/0169-Add-holidays-in-Switzerland/_list b/split-patch/test/chj-home-expected/--hunks/0169-Add-holidays-in-Switzerland/_list similarity index 100% rename from test/chj-home-expected/--hunks/0169-Add-holidays-in-Switzerland/_list rename to split-patch/test/chj-home-expected/--hunks/0169-Add-holidays-in-Switzerland/_list diff --git a/test/chj-home-expected/--hunks/0170-.holidays.tsv-english-Basel/0170-.holidays.tsv-english-Basel-.holidays.tsv-000.patch b/split-patch/test/chj-home-expected/--hunks/0170-.holidays.tsv-english-Basel/0170-.holidays.tsv-english-Basel-.holidays.tsv-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0170-.holidays.tsv-english-Basel/0170-.holidays.tsv-english-Basel-.holidays.tsv-000.patch rename to split-patch/test/chj-home-expected/--hunks/0170-.holidays.tsv-english-Basel/0170-.holidays.tsv-english-Basel-.holidays.tsv-000.patch diff --git a/test/chj-home-expected/--hunks/0170-.holidays.tsv-english-Basel/_list b/split-patch/test/chj-home-expected/--hunks/0170-.holidays.tsv-english-Basel/_list similarity index 100% rename from test/chj-home-expected/--hunks/0170-.holidays.tsv-english-Basel/_list rename to split-patch/test/chj-home-expected/--hunks/0170-.holidays.tsv-english-Basel/_list diff --git a/test/chj-home-expected/--hunks/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-001.patch b/split-patch/test/chj-home-expected/--hunks/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-001.patch rename to split-patch/test/chj-home-expected/--hunks/0171-init-import-gpg-keys-first/0171-init-import-gpg-keys-first-.chj-home_init-001.patch diff --git a/test/chj-home-expected/--hunks/0171-init-import-gpg-keys-first/_list b/split-patch/test/chj-home-expected/--hunks/0171-init-import-gpg-keys-first/_list similarity index 100% rename from test/chj-home-expected/--hunks/0171-init-import-gpg-keys-first/_list rename to split-patch/test/chj-home-expected/--hunks/0171-init-import-gpg-keys-first/_list diff --git a/test/chj-home-expected/--hunks/0172-init-yes-mod-user-imports-the-keys-already/0172-init-yes-mod-user-imports-the-keys-already-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0172-init-yes-mod-user-imports-the-keys-already/0172-init-yes-mod-user-imports-the-keys-already-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0172-init-yes-mod-user-imports-the-keys-already/0172-init-yes-mod-user-imports-the-keys-already-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0172-init-yes-mod-user-imports-the-keys-already/0172-init-yes-mod-user-imports-the-keys-already-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0172-init-yes-mod-user-imports-the-keys-already/_list b/split-patch/test/chj-home-expected/--hunks/0172-init-yes-mod-user-imports-the-keys-already/_list similarity index 100% rename from test/chj-home-expected/--hunks/0172-init-yes-mod-user-imports-the-keys-already/_list rename to split-patch/test/chj-home-expected/--hunks/0172-init-yes-mod-user-imports-the-keys-already/_list diff --git a/test/chj-home-expected/--hunks/0173-.gitignore_global-ignore-.cache/0173-.gitignore_global-ignore-.cache-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--hunks/0173-.gitignore_global-ignore-.cache/0173-.gitignore_global-ignore-.cache-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0173-.gitignore_global-ignore-.cache/0173-.gitignore_global-ignore-.cache-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--hunks/0173-.gitignore_global-ignore-.cache/0173-.gitignore_global-ignore-.cache-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--hunks/0173-.gitignore_global-ignore-.cache/_list b/split-patch/test/chj-home-expected/--hunks/0173-.gitignore_global-ignore-.cache/_list similarity index 100% rename from test/chj-home-expected/--hunks/0173-.gitignore_global-ignore-.cache/_list rename to split-patch/test/chj-home-expected/--hunks/0173-.gitignore_global-ignore-.cache/_list diff --git a/test/chj-home-expected/--hunks/0174-Prioritize-my-mt/0174-Prioritize-my-mt-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0174-Prioritize-my-mt/0174-Prioritize-my-mt-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0174-Prioritize-my-mt/0174-Prioritize-my-mt-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0174-Prioritize-my-mt/0174-Prioritize-my-mt-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0174-Prioritize-my-mt/_list b/split-patch/test/chj-home-expected/--hunks/0174-Prioritize-my-mt/_list similarity index 100% rename from test/chj-home-expected/--hunks/0174-Prioritize-my-mt/_list rename to split-patch/test/chj-home-expected/--hunks/0174-Prioritize-my-mt/_list diff --git a/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-000.patch b/split-patch/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-000.patch rename to split-patch/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-000.patch diff --git a/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-001.patch b/split-patch/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-001.patch similarity index 100% rename from test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-001.patch rename to split-patch/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-001.patch diff --git a/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-002.patch b/split-patch/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-002.patch similarity index 100% rename from test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-002.patch rename to split-patch/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-002.patch diff --git a/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-003.patch b/split-patch/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-003.patch similarity index 100% rename from test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-003.patch rename to split-patch/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-003.patch diff --git a/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-004.patch b/split-patch/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-004.patch similarity index 100% rename from test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-004.patch rename to split-patch/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-004.patch diff --git a/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-005.patch b/split-patch/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-005.patch similarity index 100% rename from test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-005.patch rename to split-patch/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i-.holidays.tsv-005.patch diff --git a/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/_list b/split-patch/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/_list similarity index 100% rename from test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/_list rename to split-patch/test/chj-home-expected/--hunks/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i/_list diff --git a/test/chj-home-expected/--hunks/0176-.bashrc-add-cdat/0176-.bashrc-add-cdat-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0176-.bashrc-add-cdat/0176-.bashrc-add-cdat-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0176-.bashrc-add-cdat/0176-.bashrc-add-cdat-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0176-.bashrc-add-cdat/0176-.bashrc-add-cdat-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0176-.bashrc-add-cdat/_list b/split-patch/test/chj-home-expected/--hunks/0176-.bashrc-add-cdat/_list similarity index 100% rename from test/chj-home-expected/--hunks/0176-.bashrc-add-cdat/_list rename to split-patch/test/chj-home-expected/--hunks/0176-.bashrc-add-cdat/_list diff --git a/test/chj-home-expected/--hunks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--hunks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--hunks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--hunks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/_list b/split-patch/test/chj-home-expected/--hunks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/_list similarity index 100% rename from test/chj-home-expected/--hunks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/_list rename to split-patch/test/chj-home-expected/--hunks/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks/_list diff --git a/test/chj-home-expected/--hunks/0178-.bashrc-cdat-pass-arguments-to-dat/0178-.bashrc-cdat-pass-arguments-to-dat-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0178-.bashrc-cdat-pass-arguments-to-dat/0178-.bashrc-cdat-pass-arguments-to-dat-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0178-.bashrc-cdat-pass-arguments-to-dat/0178-.bashrc-cdat-pass-arguments-to-dat-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0178-.bashrc-cdat-pass-arguments-to-dat/0178-.bashrc-cdat-pass-arguments-to-dat-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0178-.bashrc-cdat-pass-arguments-to-dat/_list b/split-patch/test/chj-home-expected/--hunks/0178-.bashrc-cdat-pass-arguments-to-dat/_list similarity index 100% rename from test/chj-home-expected/--hunks/0178-.bashrc-cdat-pass-arguments-to-dat/_list rename to split-patch/test/chj-home-expected/--hunks/0178-.bashrc-cdat-pass-arguments-to-dat/_list diff --git a/test/chj-home-expected/--hunks/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/_list b/split-patch/test/chj-home-expected/--hunks/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/_list similarity index 100% rename from test/chj-home-expected/--hunks/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/_list rename to split-patch/test/chj-home-expected/--hunks/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth/_list diff --git a/test/chj-home-expected/--hunks/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/_list b/split-patch/test/chj-home-expected/--hunks/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/_list similarity index 100% rename from test/chj-home-expected/--hunks/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/_list rename to split-patch/test/chj-home-expected/--hunks/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir/_list diff --git a/test/chj-home-expected/--hunks/0181-.bashrc-finally-remove-df-wrapper/0181-.bashrc-finally-remove-df-wrapper-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0181-.bashrc-finally-remove-df-wrapper/0181-.bashrc-finally-remove-df-wrapper-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0181-.bashrc-finally-remove-df-wrapper/0181-.bashrc-finally-remove-df-wrapper-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0181-.bashrc-finally-remove-df-wrapper/0181-.bashrc-finally-remove-df-wrapper-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0181-.bashrc-finally-remove-df-wrapper/_list b/split-patch/test/chj-home-expected/--hunks/0181-.bashrc-finally-remove-df-wrapper/_list similarity index 100% rename from test/chj-home-expected/--hunks/0181-.bashrc-finally-remove-df-wrapper/_list rename to split-patch/test/chj-home-expected/--hunks/0181-.bashrc-finally-remove-df-wrapper/_list diff --git a/test/chj-home-expected/--hunks/0182-.chj-home-init-follow-BROWSER-env-var-protocol/0182-.chj-home-init-follow-BROWSER-env-var-protocol-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0182-.chj-home-init-follow-BROWSER-env-var-protocol/0182-.chj-home-init-follow-BROWSER-env-var-protocol-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0182-.chj-home-init-follow-BROWSER-env-var-protocol/0182-.chj-home-init-follow-BROWSER-env-var-protocol-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0182-.chj-home-init-follow-BROWSER-env-var-protocol/0182-.chj-home-init-follow-BROWSER-env-var-protocol-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0182-.chj-home-init-follow-BROWSER-env-var-protocol/_list b/split-patch/test/chj-home-expected/--hunks/0182-.chj-home-init-follow-BROWSER-env-var-protocol/_list similarity index 100% rename from test/chj-home-expected/--hunks/0182-.chj-home-init-follow-BROWSER-env-var-protocol/_list rename to split-patch/test/chj-home-expected/--hunks/0182-.chj-home-init-follow-BROWSER-env-var-protocol/_list diff --git a/test/chj-home-expected/--hunks/0183-.chj-home-init-use-ew-as-editor/0183-.chj-home-init-use-ew-as-editor-.chj-home_init-000.patch b/split-patch/test/chj-home-expected/--hunks/0183-.chj-home-init-use-ew-as-editor/0183-.chj-home-init-use-ew-as-editor-.chj-home_init-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0183-.chj-home-init-use-ew-as-editor/0183-.chj-home-init-use-ew-as-editor-.chj-home_init-000.patch rename to split-patch/test/chj-home-expected/--hunks/0183-.chj-home-init-use-ew-as-editor/0183-.chj-home-init-use-ew-as-editor-.chj-home_init-000.patch diff --git a/test/chj-home-expected/--hunks/0183-.chj-home-init-use-ew-as-editor/_list b/split-patch/test/chj-home-expected/--hunks/0183-.chj-home-init-use-ew-as-editor/_list similarity index 100% rename from test/chj-home-expected/--hunks/0183-.chj-home-init-use-ew-as-editor/_list rename to split-patch/test/chj-home-expected/--hunks/0183-.chj-home-init-use-ew-as-editor/_list diff --git a/test/chj-home-expected/--hunks/0184-.bashrc-add-cdgit/0184-.bashrc-add-cdgit-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0184-.bashrc-add-cdgit/0184-.bashrc-add-cdgit-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0184-.bashrc-add-cdgit/0184-.bashrc-add-cdgit-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0184-.bashrc-add-cdgit/0184-.bashrc-add-cdgit-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0184-.bashrc-add-cdgit/_list b/split-patch/test/chj-home-expected/--hunks/0184-.bashrc-add-cdgit/_list similarity index 100% rename from test/chj-home-expected/--hunks/0184-.bashrc-add-cdgit/_list rename to split-patch/test/chj-home-expected/--hunks/0184-.bashrc-add-cdgit/_list diff --git a/test/chj-home-expected/--hunks/0185-.bash_profile-need-to-set-umask-now/0185-.bash_profile-need-to-set-umask-now-.bash_profile-000.patch b/split-patch/test/chj-home-expected/--hunks/0185-.bash_profile-need-to-set-umask-now/0185-.bash_profile-need-to-set-umask-now-.bash_profile-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0185-.bash_profile-need-to-set-umask-now/0185-.bash_profile-need-to-set-umask-now-.bash_profile-000.patch rename to split-patch/test/chj-home-expected/--hunks/0185-.bash_profile-need-to-set-umask-now/0185-.bash_profile-need-to-set-umask-now-.bash_profile-000.patch diff --git a/test/chj-home-expected/--hunks/0185-.bash_profile-need-to-set-umask-now/_list b/split-patch/test/chj-home-expected/--hunks/0185-.bash_profile-need-to-set-umask-now/_list similarity index 100% rename from test/chj-home-expected/--hunks/0185-.bash_profile-need-to-set-umask-now/_list rename to split-patch/test/chj-home-expected/--hunks/0185-.bash_profile-need-to-set-umask-now/_list diff --git a/test/chj-home-expected/--hunks/0186-.gitignore_global-ignore-.cj-cargolock/0186-.gitignore_global-ignore-.cj-cargolock-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--hunks/0186-.gitignore_global-ignore-.cj-cargolock/0186-.gitignore_global-ignore-.cj-cargolock-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0186-.gitignore_global-ignore-.cj-cargolock/0186-.gitignore_global-ignore-.cj-cargolock-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--hunks/0186-.gitignore_global-ignore-.cj-cargolock/0186-.gitignore_global-ignore-.cj-cargolock-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--hunks/0186-.gitignore_global-ignore-.cj-cargolock/_list b/split-patch/test/chj-home-expected/--hunks/0186-.gitignore_global-ignore-.cj-cargolock/_list similarity index 100% rename from test/chj-home-expected/--hunks/0186-.gitignore_global-ignore-.cj-cargolock/_list rename to split-patch/test/chj-home-expected/--hunks/0186-.gitignore_global-ignore-.cj-cargolock/_list diff --git a/test/chj-home-expected/--hunks/0187-.gitignore_global-ignore-__pycache__/0187-.gitignore_global-ignore-__pycache__-.gitignore_global-000.patch b/split-patch/test/chj-home-expected/--hunks/0187-.gitignore_global-ignore-__pycache__/0187-.gitignore_global-ignore-__pycache__-.gitignore_global-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0187-.gitignore_global-ignore-__pycache__/0187-.gitignore_global-ignore-__pycache__-.gitignore_global-000.patch rename to split-patch/test/chj-home-expected/--hunks/0187-.gitignore_global-ignore-__pycache__/0187-.gitignore_global-ignore-__pycache__-.gitignore_global-000.patch diff --git a/test/chj-home-expected/--hunks/0187-.gitignore_global-ignore-__pycache__/_list b/split-patch/test/chj-home-expected/--hunks/0187-.gitignore_global-ignore-__pycache__/_list similarity index 100% rename from test/chj-home-expected/--hunks/0187-.gitignore_global-ignore-__pycache__/_list rename to split-patch/test/chj-home-expected/--hunks/0187-.gitignore_global-ignore-__pycache__/_list diff --git a/test/chj-home-expected/--hunks/0188-.bashrc-add-cdnnnn-and-cdnnnnn/0188-.bashrc-add-cdnnnn-and-cdnnnnn-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0188-.bashrc-add-cdnnnn-and-cdnnnnn/0188-.bashrc-add-cdnnnn-and-cdnnnnn-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0188-.bashrc-add-cdnnnn-and-cdnnnnn/0188-.bashrc-add-cdnnnn-and-cdnnnnn-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0188-.bashrc-add-cdnnnn-and-cdnnnnn/0188-.bashrc-add-cdnnnn-and-cdnnnnn-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0188-.bashrc-add-cdnnnn-and-cdnnnnn/_list b/split-patch/test/chj-home-expected/--hunks/0188-.bashrc-add-cdnnnn-and-cdnnnnn/_list similarity index 100% rename from test/chj-home-expected/--hunks/0188-.bashrc-add-cdnnnn-and-cdnnnnn/_list rename to split-patch/test/chj-home-expected/--hunks/0188-.bashrc-add-cdnnnn-and-cdnnnnn/_list diff --git a/test/chj-home-expected/--hunks/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/_list b/split-patch/test/chj-home-expected/--hunks/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/_list similarity index 100% rename from test/chj-home-expected/--hunks/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/_list rename to split-patch/test/chj-home-expected/--hunks/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn/_list diff --git a/test/chj-home-expected/--hunks/0190-.bashrc-update-color-detection/0190-.bashrc-update-color-detection-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0190-.bashrc-update-color-detection/0190-.bashrc-update-color-detection-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0190-.bashrc-update-color-detection/0190-.bashrc-update-color-detection-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0190-.bashrc-update-color-detection/0190-.bashrc-update-color-detection-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0190-.bashrc-update-color-detection/_list b/split-patch/test/chj-home-expected/--hunks/0190-.bashrc-update-color-detection/_list similarity index 100% rename from test/chj-home-expected/--hunks/0190-.bashrc-update-color-detection/_list rename to split-patch/test/chj-home-expected/--hunks/0190-.bashrc-update-color-detection/_list diff --git a/test/chj-home-expected/--hunks/0191-.bashrc-add-lft/0191-.bashrc-add-lft-.bashrc-000.patch b/split-patch/test/chj-home-expected/--hunks/0191-.bashrc-add-lft/0191-.bashrc-add-lft-.bashrc-000.patch similarity index 100% rename from test/chj-home-expected/--hunks/0191-.bashrc-add-lft/0191-.bashrc-add-lft-.bashrc-000.patch rename to split-patch/test/chj-home-expected/--hunks/0191-.bashrc-add-lft/0191-.bashrc-add-lft-.bashrc-000.patch diff --git a/test/chj-home-expected/--hunks/0191-.bashrc-add-lft/_list b/split-patch/test/chj-home-expected/--hunks/0191-.bashrc-add-lft/_list similarity index 100% rename from test/chj-home-expected/--hunks/0191-.bashrc-add-lft/_list rename to split-patch/test/chj-home-expected/--hunks/0191-.bashrc-add-lft/_list diff --git a/test/chj-home/0001-move-lt-to-chj-bin.patch b/split-patch/test/chj-home/0001-move-lt-to-chj-bin.patch similarity index 100% rename from test/chj-home/0001-move-lt-to-chj-bin.patch rename to split-patch/test/chj-home/0001-move-lt-to-chj-bin.patch diff --git a/test/chj-home/0002-ignore-.xhtml.patch b/split-patch/test/chj-home/0002-ignore-.xhtml.patch similarity index 100% rename from test/chj-home/0002-ignore-.xhtml.patch rename to split-patch/test/chj-home/0002-ignore-.xhtml.patch diff --git a/test/chj-home/0003-ignore-nohup.out.patch b/split-patch/test/chj-home/0003-ignore-nohup.out.patch similarity index 100% rename from test/chj-home/0003-ignore-nohup.out.patch rename to split-patch/test/chj-home/0003-ignore-nohup.out.patch diff --git a/test/chj-home/0004-git-wanted-this.patch b/split-patch/test/chj-home/0004-git-wanted-this.patch similarity index 100% rename from test/chj-home/0004-git-wanted-this.patch rename to split-patch/test/chj-home/0004-git-wanted-this.patch diff --git a/test/chj-home/0005-ignore-.markdownmake.lck.patch b/split-patch/test/chj-home/0005-ignore-.markdownmake.lck.patch similarity index 100% rename from test/chj-home/0005-ignore-.markdownmake.lck.patch rename to split-patch/test/chj-home/0005-ignore-.markdownmake.lck.patch diff --git a/test/chj-home/0006-UK-locale.patch b/split-patch/test/chj-home/0006-UK-locale.patch similarity index 100% rename from test/chj-home/0006-UK-locale.patch rename to split-patch/test/chj-home/0006-UK-locale.patch diff --git a/test/chj-home/0007-obsolete.patch b/split-patch/test/chj-home/0007-obsolete.patch similarity index 100% rename from test/chj-home/0007-obsolete.patch rename to split-patch/test/chj-home/0007-obsolete.patch diff --git a/test/chj-home/0008-make-windows-key-Alt_L.patch b/split-patch/test/chj-home/0008-make-windows-key-Alt_L.patch similarity index 100% rename from test/chj-home/0008-make-windows-key-Alt_L.patch rename to split-patch/test/chj-home/0008-make-windows-key-Alt_L.patch diff --git a/test/chj-home/0009-update-emacs-geometry-remove-ancient-entries.patch b/split-patch/test/chj-home/0009-update-emacs-geometry-remove-ancient-entries.patch similarity index 100% rename from test/chj-home/0009-update-emacs-geometry-remove-ancient-entries.patch rename to split-patch/test/chj-home/0009-update-emacs-geometry-remove-ancient-entries.patch diff --git a/test/chj-home/0010-remove-more-ancient-entries.patch b/split-patch/test/chj-home/0010-remove-more-ancient-entries.patch similarity index 100% rename from test/chj-home/0010-remove-more-ancient-entries.patch rename to split-patch/test/chj-home/0010-remove-more-ancient-entries.patch diff --git a/test/chj-home/0011-remove-more-old-entries-apparently-unused.patch b/split-patch/test/chj-home/0011-remove-more-old-entries-apparently-unused.patch similarity index 100% rename from test/chj-home/0011-remove-more-old-entries-apparently-unused.patch rename to split-patch/test/chj-home/0011-remove-more-old-entries-apparently-unused.patch diff --git a/test/chj-home/0012-don-t-use-aliases.patch b/split-patch/test/chj-home/0012-don-t-use-aliases.patch similarity index 100% rename from test/chj-home/0012-don-t-use-aliases.patch rename to split-patch/test/chj-home/0012-don-t-use-aliases.patch diff --git a/test/chj-home/0013-cleanup.patch b/split-patch/test/chj-home/0013-cleanup.patch similarity index 100% rename from test/chj-home/0013-cleanup.patch rename to split-patch/test/chj-home/0013-cleanup.patch diff --git a/test/chj-home/0014-cleanup.patch b/split-patch/test/chj-home/0014-cleanup.patch similarity index 100% rename from test/chj-home/0014-cleanup.patch rename to split-patch/test/chj-home/0014-cleanup.patch diff --git a/test/chj-home/0015-use-.emacs.d-from-chj-emacs.patch b/split-patch/test/chj-home/0015-use-.emacs.d-from-chj-emacs.patch similarity index 100% rename from test/chj-home/0015-use-.emacs.d-from-chj-emacs.patch rename to split-patch/test/chj-home/0015-use-.emacs.d-from-chj-emacs.patch diff --git a/test/chj-home/0016-replace-external-symlinks-with-a-script.patch b/split-patch/test/chj-home/0016-replace-external-symlinks-with-a-script.patch similarity index 100% rename from test/chj-home/0016-replace-external-symlinks-with-a-script.patch rename to split-patch/test/chj-home/0016-replace-external-symlinks-with-a-script.patch diff --git a/test/chj-home/0017-home-init-run-lesskey.patch b/split-patch/test/chj-home/0017-home-init-run-lesskey.patch similarity index 100% rename from test/chj-home/0017-home-init-run-lesskey.patch rename to split-patch/test/chj-home/0017-home-init-run-lesskey.patch diff --git a/test/chj-home/0018-fix-don-t-use-aliases.patch b/split-patch/test/chj-home/0018-fix-don-t-use-aliases.patch similarity index 100% rename from test/chj-home/0018-fix-don-t-use-aliases.patch rename to split-patch/test/chj-home/0018-fix-don-t-use-aliases.patch diff --git a/test/chj-home/0019-home-init-fixes.patch b/split-patch/test/chj-home/0019-home-init-fixes.patch similarity index 100% rename from test/chj-home/0019-home-init-fixes.patch rename to split-patch/test/chj-home/0019-home-init-fixes.patch diff --git a/test/chj-home/0020-clean-up-PATH.patch b/split-patch/test/chj-home/0020-clean-up-PATH.patch similarity index 100% rename from test/chj-home/0020-clean-up-PATH.patch rename to split-patch/test/chj-home/0020-clean-up-PATH.patch diff --git a/test/chj-home/0021-load-.bashrc-last.patch b/split-patch/test/chj-home/0021-load-.bashrc-last.patch similarity index 100% rename from test/chj-home/0021-load-.bashrc-last.patch rename to split-patch/test/chj-home/0021-load-.bashrc-last.patch diff --git a/test/chj-home/0022-better-grouping.patch b/split-patch/test/chj-home/0022-better-grouping.patch similarity index 100% rename from test/chj-home/0022-better-grouping.patch rename to split-patch/test/chj-home/0022-better-grouping.patch diff --git a/test/chj-home/0023-remove-duplicate.patch b/split-patch/test/chj-home/0023-remove-duplicate.patch similarity index 100% rename from test/chj-home/0023-remove-duplicate.patch rename to split-patch/test/chj-home/0023-remove-duplicate.patch diff --git a/test/chj-home/0024-move-to-.bash_profile.patch b/split-patch/test/chj-home/0024-move-to-.bash_profile.patch similarity index 100% rename from test/chj-home/0024-move-to-.bash_profile.patch rename to split-patch/test/chj-home/0024-move-to-.bash_profile.patch diff --git a/test/chj-home/0025-more-move-to-.bash_profile-incl.-HISTSIZE.patch b/split-patch/test/chj-home/0025-more-move-to-.bash_profile-incl.-HISTSIZE.patch similarity index 100% rename from test/chj-home/0025-more-move-to-.bash_profile-incl.-HISTSIZE.patch rename to split-patch/test/chj-home/0025-more-move-to-.bash_profile-incl.-HISTSIZE.patch diff --git a/test/chj-home/0026-cleanup.patch b/split-patch/test/chj-home/0026-cleanup.patch similarity index 100% rename from test/chj-home/0026-cleanup.patch rename to split-patch/test/chj-home/0026-cleanup.patch diff --git a/test/chj-home/0027-more-move-to-.bash_profile-beautify.patch b/split-patch/test/chj-home/0027-more-move-to-.bash_profile-beautify.patch similarity index 100% rename from test/chj-home/0027-more-move-to-.bash_profile-beautify.patch rename to split-patch/test/chj-home/0027-more-move-to-.bash_profile-beautify.patch diff --git a/test/chj-home/0028-source-.bash_profile_local.patch b/split-patch/test/chj-home/0028-source-.bash_profile_local.patch similarity index 100% rename from test/chj-home/0028-source-.bash_profile_local.patch rename to split-patch/test/chj-home/0028-source-.bash_profile_local.patch diff --git a/test/chj-home/0029-source-.bashrc_local.patch b/split-patch/test/chj-home/0029-source-.bashrc_local.patch similarity index 100% rename from test/chj-home/0029-source-.bashrc_local.patch rename to split-patch/test/chj-home/0029-source-.bashrc_local.patch diff --git a/test/chj-home/0030-remove-entries-that-can-be-moved-to-.bashrc_local.patch b/split-patch/test/chj-home/0030-remove-entries-that-can-be-moved-to-.bashrc_local.patch similarity index 100% rename from test/chj-home/0030-remove-entries-that-can-be-moved-to-.bashrc_local.patch rename to split-patch/test/chj-home/0030-remove-entries-that-can-be-moved-to-.bashrc_local.patch diff --git a/test/chj-home/0031-remove-ALSARECDEV.patch b/split-patch/test/chj-home/0031-remove-ALSARECDEV.patch similarity index 100% rename from test/chj-home/0031-remove-ALSARECDEV.patch rename to split-patch/test/chj-home/0031-remove-ALSARECDEV.patch diff --git a/test/chj-home/0032-add-note-about-overridability-of-ulimit-S.patch b/split-patch/test/chj-home/0032-add-note-about-overridability-of-ulimit-S.patch similarity index 100% rename from test/chj-home/0032-add-note-about-overridability-of-ulimit-S.patch rename to split-patch/test/chj-home/0032-add-note-about-overridability-of-ulimit-S.patch diff --git a/test/chj-home/0033-home-init-do-the-remaining-tasks-that-chrisclone-did.patch b/split-patch/test/chj-home/0033-home-init-do-the-remaining-tasks-that-chrisclone-did.patch similarity index 100% rename from test/chj-home/0033-home-init-do-the-remaining-tasks-that-chrisclone-did.patch rename to split-patch/test/chj-home/0033-home-init-do-the-remaining-tasks-that-chrisclone-did.patch diff --git a/test/chj-home/0034-home-init-allow-to-run-from-different-working-direct.patch b/split-patch/test/chj-home/0034-home-init-allow-to-run-from-different-working-direct.patch similarity index 100% rename from test/chj-home/0034-home-init-allow-to-run-from-different-working-direct.patch rename to split-patch/test/chj-home/0034-home-init-allow-to-run-from-different-working-direct.patch diff --git a/test/chj-home/0035-more-fix-don-t-use-aliases.patch b/split-patch/test/chj-home/0035-more-fix-don-t-use-aliases.patch similarity index 100% rename from test/chj-home/0035-more-fix-don-t-use-aliases.patch rename to split-patch/test/chj-home/0035-more-fix-don-t-use-aliases.patch diff --git a/test/chj-home/0036-.inputrc-cleanup.patch b/split-patch/test/chj-home/0036-.inputrc-cleanup.patch similarity index 100% rename from test/chj-home/0036-.inputrc-cleanup.patch rename to split-patch/test/chj-home/0036-.inputrc-cleanup.patch diff --git a/test/chj-home/0037-merge-root-s-home-s-features.patch b/split-patch/test/chj-home/0037-merge-root-s-home-s-features.patch similarity index 100% rename from test/chj-home/0037-merge-root-s-home-s-features.patch rename to split-patch/test/chj-home/0037-merge-root-s-home-s-features.patch diff --git a/test/chj-home/0038-.gitconfig-cleanup.patch b/split-patch/test/chj-home/0038-.gitconfig-cleanup.patch similarity index 100% rename from test/chj-home/0038-.gitconfig-cleanup.patch rename to split-patch/test/chj-home/0038-.gitconfig-cleanup.patch diff --git a/test/chj-home/0039-ask-user-specific-info-from-home-init-generate-files.patch b/split-patch/test/chj-home/0039-ask-user-specific-info-from-home-init-generate-files.patch similarity index 100% rename from test/chj-home/0039-ask-user-specific-info-from-home-init-generate-files.patch rename to split-patch/test/chj-home/0039-ask-user-specific-info-from-home-init-generate-files.patch diff --git a/test/chj-home/0040-.bashrc-return-false-for-failing-commands.patch b/split-patch/test/chj-home/0040-.bashrc-return-false-for-failing-commands.patch similarity index 100% rename from test/chj-home/0040-.bashrc-return-false-for-failing-commands.patch rename to split-patch/test/chj-home/0040-.bashrc-return-false-for-failing-commands.patch diff --git a/test/chj-home/0041-home-init-only-run-once.patch b/split-patch/test/chj-home/0041-home-init-only-run-once.patch similarity index 100% rename from test/chj-home/0041-home-init-only-run-once.patch rename to split-patch/test/chj-home/0041-home-init-only-run-once.patch diff --git a/test/chj-home/0042-home-init-create-scratch-directory.patch b/split-patch/test/chj-home/0042-home-init-create-scratch-directory.patch similarity index 100% rename from test/chj-home/0042-home-init-create-scratch-directory.patch rename to split-patch/test/chj-home/0042-home-init-create-scratch-directory.patch diff --git a/test/chj-home/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t.patch b/split-patch/test/chj-home/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t.patch similarity index 100% rename from test/chj-home/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t.patch rename to split-patch/test/chj-home/0043-.bash_profile-re-add-cj-git-patchtool-and-git-sign-t.patch diff --git a/test/chj-home/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH.patch b/split-patch/test/chj-home/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH.patch similarity index 100% rename from test/chj-home/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH.patch rename to split-patch/test/chj-home/0044-.bash_profile-put-paths-to-my-tools-last-in-PATH.patch diff --git a/test/chj-home/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b.patch b/split-patch/test/chj-home/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b.patch similarity index 100% rename from test/chj-home/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b.patch rename to split-patch/test/chj-home/0045-.bashrc-add-functions-for-accessing-tools-from-chj-b.patch diff --git a/test/chj-home/0046-.bash_profile-stop-the-X-beep.patch b/split-patch/test/chj-home/0046-.bash_profile-stop-the-X-beep.patch similarity index 100% rename from test/chj-home/0046-.bash_profile-stop-the-X-beep.patch rename to split-patch/test/chj-home/0046-.bash_profile-stop-the-X-beep.patch diff --git a/test/chj-home/0047-.Xresources-reduce-emacs-window-height.patch b/split-patch/test/chj-home/0047-.Xresources-reduce-emacs-window-height.patch similarity index 100% rename from test/chj-home/0047-.Xresources-reduce-emacs-window-height.patch rename to split-patch/test/chj-home/0047-.Xresources-reduce-emacs-window-height.patch diff --git a/test/chj-home/0048-.bash_profile-increase-default-virtual-memory-limit.patch b/split-patch/test/chj-home/0048-.bash_profile-increase-default-virtual-memory-limit.patch similarity index 100% rename from test/chj-home/0048-.bash_profile-increase-default-virtual-memory-limit.patch rename to split-patch/test/chj-home/0048-.bash_profile-increase-default-virtual-memory-limit.patch diff --git a/test/chj-home/0049-move-home-init-.chj-home-init.patch b/split-patch/test/chj-home/0049-move-home-init-.chj-home-init.patch similarity index 100% rename from test/chj-home/0049-move-home-init-.chj-home-init.patch rename to split-patch/test/chj-home/0049-move-home-init-.chj-home-init.patch diff --git a/test/chj-home/0050-.bash_profile-stop-the-X-beep.patch b/split-patch/test/chj-home/0050-.bash_profile-stop-the-X-beep.patch similarity index 100% rename from test/chj-home/0050-.bash_profile-stop-the-X-beep.patch rename to split-patch/test/chj-home/0050-.bash_profile-stop-the-X-beep.patch diff --git a/test/chj-home/0051-symlink-the-opt-chj-emacs-bin-scripts.patch b/split-patch/test/chj-home/0051-symlink-the-opt-chj-emacs-bin-scripts.patch similarity index 100% rename from test/chj-home/0051-symlink-the-opt-chj-emacs-bin-scripts.patch rename to split-patch/test/chj-home/0051-symlink-the-opt-chj-emacs-bin-scripts.patch diff --git a/test/chj-home/0052-.bashrc-use-false-instead-of-return-1.patch b/split-patch/test/chj-home/0052-.bashrc-use-false-instead-of-return-1.patch similarity index 100% rename from test/chj-home/0052-.bashrc-use-false-instead-of-return-1.patch rename to split-patch/test/chj-home/0052-.bashrc-use-false-instead-of-return-1.patch diff --git a/test/chj-home/0053-.Xresources-emacs-back-to-internal-LCD-novo.patch b/split-patch/test/chj-home/0053-.Xresources-emacs-back-to-internal-LCD-novo.patch similarity index 100% rename from test/chj-home/0053-.Xresources-emacs-back-to-internal-LCD-novo.patch rename to split-patch/test/chj-home/0053-.Xresources-emacs-back-to-internal-LCD-novo.patch diff --git a/test/chj-home/0054-.Xresources-omfg-it-was-correctly-displayed.patch b/split-patch/test/chj-home/0054-.Xresources-omfg-it-was-correctly-displayed.patch similarity index 100% rename from test/chj-home/0054-.Xresources-omfg-it-was-correctly-displayed.patch rename to split-patch/test/chj-home/0054-.Xresources-omfg-it-was-correctly-displayed.patch diff --git a/test/chj-home/0055-add-.xscreensaver-with-hand-selection-through-ALL-of.patch b/split-patch/test/chj-home/0055-add-.xscreensaver-with-hand-selection-through-ALL-of.patch similarity index 100% rename from test/chj-home/0055-add-.xscreensaver-with-hand-selection-through-ALL-of.patch rename to split-patch/test/chj-home/0055-add-.xscreensaver-with-hand-selection-through-ALL-of.patch diff --git a/test/chj-home/0056-.xscreensaver-disable-sonar.patch b/split-patch/test/chj-home/0056-.xscreensaver-disable-sonar.patch similarity index 100% rename from test/chj-home/0056-.xscreensaver-disable-sonar.patch rename to split-patch/test/chj-home/0056-.xscreensaver-disable-sonar.patch diff --git a/test/chj-home/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep.patch b/split-patch/test/chj-home/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep.patch similarity index 100% rename from test/chj-home/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep.patch rename to split-patch/test/chj-home/0057-.xscreensaver-ok-hav-to-let-it-put-monitor-to-sleep.patch diff --git a/test/chj-home/0058-.bashrc-ls-with-colors.patch b/split-patch/test/chj-home/0058-.bashrc-ls-with-colors.patch similarity index 100% rename from test/chj-home/0058-.bashrc-ls-with-colors.patch rename to split-patch/test/chj-home/0058-.bashrc-ls-with-colors.patch diff --git a/test/chj-home/0059-.bashrc-remove-le-function.patch b/split-patch/test/chj-home/0059-.bashrc-remove-le-function.patch similarity index 100% rename from test/chj-home/0059-.bashrc-remove-le-function.patch rename to split-patch/test/chj-home/0059-.bashrc-remove-le-function.patch diff --git a/test/chj-home/0060-make-unlimit-accept-a-command.patch b/split-patch/test/chj-home/0060-make-unlimit-accept-a-command.patch similarity index 100% rename from test/chj-home/0060-make-unlimit-accept-a-command.patch rename to split-patch/test/chj-home/0060-make-unlimit-accept-a-command.patch diff --git a/test/chj-home/0061-move-.xscreensaver-config-file-let-user-symlink-it.patch b/split-patch/test/chj-home/0061-move-.xscreensaver-config-file-let-user-symlink-it.patch similarity index 100% rename from test/chj-home/0061-move-.xscreensaver-config-file-let-user-symlink-it.patch rename to split-patch/test/chj-home/0061-move-.xscreensaver-config-file-let-user-symlink-it.patch diff --git a/test/chj-home/0062-turn-PrtSc-button-into-Control.patch b/split-patch/test/chj-home/0062-turn-PrtSc-button-into-Control.patch similarity index 100% rename from test/chj-home/0062-turn-PrtSc-button-into-Control.patch rename to split-patch/test/chj-home/0062-turn-PrtSc-button-into-Control.patch diff --git a/test/chj-home/0063-.bashrc-silence-error-message-when-in-scratch.patch b/split-patch/test/chj-home/0063-.bashrc-silence-error-message-when-in-scratch.patch similarity index 100% rename from test/chj-home/0063-.bashrc-silence-error-message-when-in-scratch.patch rename to split-patch/test/chj-home/0063-.bashrc-silence-error-message-when-in-scratch.patch diff --git a/test/chj-home/0064-.bashrc-don-t-use-backticks.patch b/split-patch/test/chj-home/0064-.bashrc-don-t-use-backticks.patch similarity index 100% rename from test/chj-home/0064-.bashrc-don-t-use-backticks.patch rename to split-patch/test/chj-home/0064-.bashrc-don-t-use-backticks.patch diff --git a/test/chj-home/0065-.bashrc-add-rensn.patch b/split-patch/test/chj-home/0065-.bashrc-add-rensn.patch similarity index 100% rename from test/chj-home/0065-.bashrc-add-rensn.patch rename to split-patch/test/chj-home/0065-.bashrc-add-rensn.patch diff --git a/test/chj-home/0066-.bashrc-add-rensnall.patch b/split-patch/test/chj-home/0066-.bashrc-add-rensnall.patch similarity index 100% rename from test/chj-home/0066-.bashrc-add-rensnall.patch rename to split-patch/test/chj-home/0066-.bashrc-add-rensnall.patch diff --git a/test/chj-home/0067-.bashrc-consistently-format-function-definitions.patch b/split-patch/test/chj-home/0067-.bashrc-consistently-format-function-definitions.patch similarity index 100% rename from test/chj-home/0067-.bashrc-consistently-format-function-definitions.patch rename to split-patch/test/chj-home/0067-.bashrc-consistently-format-function-definitions.patch diff --git a/test/chj-home/0068-.bashrc-use-ren-nonrenamed.patch b/split-patch/test/chj-home/0068-.bashrc-use-ren-nonrenamed.patch similarity index 100% rename from test/chj-home/0068-.bashrc-use-ren-nonrenamed.patch rename to split-patch/test/chj-home/0068-.bashrc-use-ren-nonrenamed.patch diff --git a/test/chj-home/0069-.bashrc-shorten-that-name.patch b/split-patch/test/chj-home/0069-.bashrc-shorten-that-name.patch similarity index 100% rename from test/chj-home/0069-.bashrc-shorten-that-name.patch rename to split-patch/test/chj-home/0069-.bashrc-shorten-that-name.patch diff --git a/test/chj-home/0070-.bashrc-add-cb.patch b/split-patch/test/chj-home/0070-.bashrc-add-cb.patch similarity index 100% rename from test/chj-home/0070-.bashrc-add-cb.patch rename to split-patch/test/chj-home/0070-.bashrc-add-cb.patch diff --git a/test/chj-home/0071-Turn-off-new-Git-editor-waiting-warning.patch b/split-patch/test/chj-home/0071-Turn-off-new-Git-editor-waiting-warning.patch similarity index 100% rename from test/chj-home/0071-Turn-off-new-Git-editor-waiting-warning.patch rename to split-patch/test/chj-home/0071-Turn-off-new-Git-editor-waiting-warning.patch diff --git a/test/chj-home/0072-.bashrc-cb-accept-argument.patch b/split-patch/test/chj-home/0072-.bashrc-cb-accept-argument.patch similarity index 100% rename from test/chj-home/0072-.bashrc-cb-accept-argument.patch rename to split-patch/test/chj-home/0072-.bashrc-cb-accept-argument.patch diff --git a/test/chj-home/0073-.bashrc-cb-do-it-better.patch b/split-patch/test/chj-home/0073-.bashrc-cb-do-it-better.patch similarity index 100% rename from test/chj-home/0073-.bashrc-cb-do-it-better.patch rename to split-patch/test/chj-home/0073-.bashrc-cb-do-it-better.patch diff --git a/test/chj-home/0074-Don-t-use-.lesskey-anymore-for-env-LESS.patch b/split-patch/test/chj-home/0074-Don-t-use-.lesskey-anymore-for-env-LESS.patch similarity index 100% rename from test/chj-home/0074-Don-t-use-.lesskey-anymore-for-env-LESS.patch rename to split-patch/test/chj-home/0074-Don-t-use-.lesskey-anymore-for-env-LESS.patch diff --git a/test/chj-home/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots.patch b/split-patch/test/chj-home/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots.patch similarity index 100% rename from test/chj-home/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots.patch rename to split-patch/test/chj-home/0075-.bashrc-pick-up-etc-hostname-s-value-in-chroots.patch diff --git a/test/chj-home/0076-.bashrc-have-u-etc.-take-optional-argument.patch b/split-patch/test/chj-home/0076-.bashrc-have-u-etc.-take-optional-argument.patch similarity index 100% rename from test/chj-home/0076-.bashrc-have-u-etc.-take-optional-argument.patch rename to split-patch/test/chj-home/0076-.bashrc-have-u-etc.-take-optional-argument.patch diff --git a/test/chj-home/0077-.bashrc-make-u-etc.-transaction-safe-kind-of.patch b/split-patch/test/chj-home/0077-.bashrc-make-u-etc.-transaction-safe-kind-of.patch similarity index 100% rename from test/chj-home/0077-.bashrc-make-u-etc.-transaction-safe-kind-of.patch rename to split-patch/test/chj-home/0077-.bashrc-make-u-etc.-transaction-safe-kind-of.patch diff --git a/test/chj-home/0078-.bashrc-u-more-transaction-safety-properly-handle-OL.patch b/split-patch/test/chj-home/0078-.bashrc-u-more-transaction-safety-properly-handle-OL.patch similarity index 100% rename from test/chj-home/0078-.bashrc-u-more-transaction-safety-properly-handle-OL.patch rename to split-patch/test/chj-home/0078-.bashrc-u-more-transaction-safety-properly-handle-OL.patch diff --git a/test/chj-home/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change.patch b/split-patch/test/chj-home/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change.patch similarity index 100% rename from test/chj-home/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change.patch rename to split-patch/test/chj-home/0079-.bashrc-add-rxvt-fontsize-wrapper-for-env-var-change.patch diff --git a/test/chj-home/0080-.bash_profile-double-history-size.patch b/split-patch/test/chj-home/0080-.bash_profile-double-history-size.patch similarity index 100% rename from test/chj-home/0080-.bash_profile-double-history-size.patch rename to split-patch/test/chj-home/0080-.bash_profile-double-history-size.patch diff --git a/test/chj-home/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard.patch b/split-patch/test/chj-home/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard.patch similarity index 100% rename from test/chj-home/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard.patch rename to split-patch/test/chj-home/0081-.xpdfrc-add-urlCommand-copy-URL-to-clipboard.patch diff --git a/test/chj-home/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k.patch b/split-patch/test/chj-home/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k.patch similarity index 100% rename from test/chj-home/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k.patch rename to split-patch/test/chj-home/0082-.bash_profile-add-VERIFY_SIG_ACCEPT_KEYS-with-cj-s-k.patch diff --git a/test/chj-home/0083-Yet-increase-bash-history-size-more.patch b/split-patch/test/chj-home/0083-Yet-increase-bash-history-size-more.patch similarity index 100% rename from test/chj-home/0083-Yet-increase-bash-history-size-more.patch rename to split-patch/test/chj-home/0083-Yet-increase-bash-history-size-more.patch diff --git a/test/chj-home/0084-Move-CHJHOSTNAME-to-right-place-too.patch b/split-patch/test/chj-home/0084-Move-CHJHOSTNAME-to-right-place-too.patch similarity index 100% rename from test/chj-home/0084-Move-CHJHOSTNAME-to-right-place-too.patch rename to split-patch/test/chj-home/0084-Move-CHJHOSTNAME-to-right-place-too.patch diff --git a/test/chj-home/0085-.bashrc-add-cdn-alias-for-cd_newest.patch b/split-patch/test/chj-home/0085-.bashrc-add-cdn-alias-for-cd_newest.patch similarity index 100% rename from test/chj-home/0085-.bashrc-add-cdn-alias-for-cd_newest.patch rename to split-patch/test/chj-home/0085-.bashrc-add-cdn-alias-for-cd_newest.patch diff --git a/test/chj-home/0086-.bashrc-remove-stale-commented-lines.patch b/split-patch/test/chj-home/0086-.bashrc-remove-stale-commented-lines.patch similarity index 100% rename from test/chj-home/0086-.bashrc-remove-stale-commented-lines.patch rename to split-patch/test/chj-home/0086-.bashrc-remove-stale-commented-lines.patch diff --git a/test/chj-home/0087-.bashrc-clean-up-with-regards-to-.bashrc_local.patch b/split-patch/test/chj-home/0087-.bashrc-clean-up-with-regards-to-.bashrc_local.patch similarity index 100% rename from test/chj-home/0087-.bashrc-clean-up-with-regards-to-.bashrc_local.patch rename to split-patch/test/chj-home/0087-.bashrc-clean-up-with-regards-to-.bashrc_local.patch diff --git a/test/chj-home/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented.patch b/split-patch/test/chj-home/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented.patch similarity index 100% rename from test/chj-home/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented.patch rename to split-patch/test/chj-home/0088-.bashrc-enable-color-prompt-on-rxvt-remove-commented.patch diff --git a/test/chj-home/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again.patch b/split-patch/test/chj-home/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again.patch similarity index 100% rename from test/chj-home/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again.patch rename to split-patch/test/chj-home/0089-.chj-home-dot.xscreensaver-dull-disable-dpms-again.patch diff --git a/test/chj-home/0090-.bashrc-cdn-ah-I-can-overload-it.patch b/split-patch/test/chj-home/0090-.bashrc-cdn-ah-I-can-overload-it.patch similarity index 100% rename from test/chj-home/0090-.bashrc-cdn-ah-I-can-overload-it.patch rename to split-patch/test/chj-home/0090-.bashrc-cdn-ah-I-can-overload-it.patch diff --git a/test/chj-home/0091-.bashrc-add-cj.patch b/split-patch/test/chj-home/0091-.bashrc-add-cj.patch similarity index 100% rename from test/chj-home/0091-.bashrc-add-cj.patch rename to split-patch/test/chj-home/0091-.bashrc-add-cj.patch diff --git a/test/chj-home/0092-.chj-home-init-make-sure-the-chjize-key-is-imported.patch b/split-patch/test/chj-home/0092-.chj-home-init-make-sure-the-chjize-key-is-imported.patch similarity index 100% rename from test/chj-home/0092-.chj-home-init-make-sure-the-chjize-key-is-imported.patch rename to split-patch/test/chj-home/0092-.chj-home-init-make-sure-the-chjize-key-is-imported.patch diff --git a/test/chj-home/0093-.chj-home-init-move-gpg-import-to-the-end.patch b/split-patch/test/chj-home/0093-.chj-home-init-move-gpg-import-to-the-end.patch similarity index 100% rename from test/chj-home/0093-.chj-home-init-move-gpg-import-to-the-end.patch rename to split-patch/test/chj-home/0093-.chj-home-init-move-gpg-import-to-the-end.patch diff --git a/test/chj-home/0094-.chj-home-init-initialize-a-Git-repo-in-scratch.patch b/split-patch/test/chj-home/0094-.chj-home-init-initialize-a-Git-repo-in-scratch.patch similarity index 100% rename from test/chj-home/0094-.chj-home-init-initialize-a-Git-repo-in-scratch.patch rename to split-patch/test/chj-home/0094-.chj-home-init-initialize-a-Git-repo-in-scratch.patch diff --git a/test/chj-home/0095-.bash_profile-put-chjize-into-PATH.patch b/split-patch/test/chj-home/0095-.bash_profile-put-chjize-into-PATH.patch similarity index 100% rename from test/chj-home/0095-.bash_profile-put-chjize-into-PATH.patch rename to split-patch/test/chj-home/0095-.bash_profile-put-chjize-into-PATH.patch diff --git a/test/chj-home/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option.patch b/split-patch/test/chj-home/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option.patch similarity index 100% rename from test/chj-home/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option.patch rename to split-patch/test/chj-home/0096-.bashrc-cdn-cdnewdir-use-p-mkdir-option.patch diff --git a/test/chj-home/0097-.bash_profile-set-USER-if-missing.patch b/split-patch/test/chj-home/0097-.bash_profile-set-USER-if-missing.patch similarity index 100% rename from test/chj-home/0097-.bash_profile-set-USER-if-missing.patch rename to split-patch/test/chj-home/0097-.bash_profile-set-USER-if-missing.patch diff --git a/test/chj-home/0098-.bash_profile-add-cj-qemucontrol-to-PATH.patch b/split-patch/test/chj-home/0098-.bash_profile-add-cj-qemucontrol-to-PATH.patch similarity index 100% rename from test/chj-home/0098-.bash_profile-add-cj-qemucontrol-to-PATH.patch rename to split-patch/test/chj-home/0098-.bash_profile-add-cj-qemucontrol-to-PATH.patch diff --git a/test/chj-home/0099-.chj-home-init-accept-email-addresses-with-full-name.patch b/split-patch/test/chj-home/0099-.chj-home-init-accept-email-addresses-with-full-name.patch similarity index 100% rename from test/chj-home/0099-.chj-home-init-accept-email-addresses-with-full-name.patch rename to split-patch/test/chj-home/0099-.chj-home-init-accept-email-addresses-with-full-name.patch diff --git a/test/chj-home/0100-.chj-home-init-set-scoma-settings.patch b/split-patch/test/chj-home/0100-.chj-home-init-set-scoma-settings.patch similarity index 100% rename from test/chj-home/0100-.chj-home-init-set-scoma-settings.patch rename to split-patch/test/chj-home/0100-.chj-home-init-set-scoma-settings.patch diff --git a/test/chj-home/0101-.chj-home-init-fix-perms-on-checked-out-directories.patch b/split-patch/test/chj-home/0101-.chj-home-init-fix-perms-on-checked-out-directories.patch similarity index 100% rename from test/chj-home/0101-.chj-home-init-fix-perms-on-checked-out-directories.patch rename to split-patch/test/chj-home/0101-.chj-home-init-fix-perms-on-checked-out-directories.patch diff --git a/test/chj-home/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director.patch b/split-patch/test/chj-home/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director.patch similarity index 100% rename from test/chj-home/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director.patch rename to split-patch/test/chj-home/0102-Fix-.chj-home-init-fix-perms-on-checked-out-director.patch diff --git a/test/chj-home/0103-.bashrc-show-exit-code-on-failing-commands.patch b/split-patch/test/chj-home/0103-.bashrc-show-exit-code-on-failing-commands.patch similarity index 100% rename from test/chj-home/0103-.bashrc-show-exit-code-on-failing-commands.patch rename to split-patch/test/chj-home/0103-.bashrc-show-exit-code-on-failing-commands.patch diff --git a/test/chj-home/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info.patch b/split-patch/test/chj-home/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info.patch similarity index 100% rename from test/chj-home/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info.patch rename to split-patch/test/chj-home/0104-.bashrc-show-the-exit-code-in-red-not-the-other-info.patch diff --git a/test/chj-home/0105-.bashrc-show-exit-code-on-a-separate-line.patch b/split-patch/test/chj-home/0105-.bashrc-show-exit-code-on-a-separate-line.patch similarity index 100% rename from test/chj-home/0105-.bashrc-show-exit-code-on-a-separate-line.patch rename to split-patch/test/chj-home/0105-.bashrc-show-exit-code-on-a-separate-line.patch diff --git a/test/chj-home/0106-Revert-.bashrc-show-exit-code-on-a-separate-line.patch b/split-patch/test/chj-home/0106-Revert-.bashrc-show-exit-code-on-a-separate-line.patch similarity index 100% rename from test/chj-home/0106-Revert-.bashrc-show-exit-code-on-a-separate-line.patch rename to split-patch/test/chj-home/0106-Revert-.bashrc-show-exit-code-on-a-separate-line.patch diff --git a/test/chj-home/0107-.bashrc-restructure-prompt-command.patch b/split-patch/test/chj-home/0107-.bashrc-restructure-prompt-command.patch similarity index 100% rename from test/chj-home/0107-.bashrc-restructure-prompt-command.patch rename to split-patch/test/chj-home/0107-.bashrc-restructure-prompt-command.patch diff --git a/test/chj-home/0108-.bashrc-set-PS1-differently-on-each-iteration.patch b/split-patch/test/chj-home/0108-.bashrc-set-PS1-differently-on-each-iteration.patch similarity index 100% rename from test/chj-home/0108-.bashrc-set-PS1-differently-on-each-iteration.patch rename to split-patch/test/chj-home/0108-.bashrc-set-PS1-differently-on-each-iteration.patch diff --git a/test/chj-home/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration.patch b/split-patch/test/chj-home/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration.patch similarity index 100% rename from test/chj-home/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration.patch rename to split-patch/test/chj-home/0109-Revert-.bashrc-set-PS1-differently-on-each-iteration.patch diff --git a/test/chj-home/0110-Revert-.bashrc-restructure-prompt-command.patch b/split-patch/test/chj-home/0110-Revert-.bashrc-restructure-prompt-command.patch similarity index 100% rename from test/chj-home/0110-Revert-.bashrc-restructure-prompt-command.patch rename to split-patch/test/chj-home/0110-Revert-.bashrc-restructure-prompt-command.patch diff --git a/test/chj-home/0111-.bashrc-does-not-work.patch b/split-patch/test/chj-home/0111-.bashrc-does-not-work.patch similarity index 100% rename from test/chj-home/0111-.bashrc-does-not-work.patch rename to split-patch/test/chj-home/0111-.bashrc-does-not-work.patch diff --git a/test/chj-home/0112-.bashrc-finally-working.patch b/split-patch/test/chj-home/0112-.bashrc-finally-working.patch similarity index 100% rename from test/chj-home/0112-.bashrc-finally-working.patch rename to split-patch/test/chj-home/0112-.bashrc-finally-working.patch diff --git a/test/chj-home/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed.patch b/split-patch/test/chj-home/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed.patch similarity index 100% rename from test/chj-home/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed.patch rename to split-patch/test/chj-home/0113-.bashrc-show-exit-code-on-a-separate-line-now-fixed.patch diff --git a/test/chj-home/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now.patch b/split-patch/test/chj-home/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now.patch similarity index 100% rename from test/chj-home/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now.patch rename to split-patch/test/chj-home/0114-Revert-.bashrc-show-exit-code-on-a-separate-line-now.patch diff --git a/test/chj-home/0115-.bashrc-document-the-fix.patch b/split-patch/test/chj-home/0115-.bashrc-document-the-fix.patch similarity index 100% rename from test/chj-home/0115-.bashrc-document-the-fix.patch rename to split-patch/test/chj-home/0115-.bashrc-document-the-fix.patch diff --git a/test/chj-home/0116-.bash_profile-finally-remove-ulimit-again.patch b/split-patch/test/chj-home/0116-.bash_profile-finally-remove-ulimit-again.patch similarity index 100% rename from test/chj-home/0116-.bash_profile-finally-remove-ulimit-again.patch rename to split-patch/test/chj-home/0116-.bash_profile-finally-remove-ulimit-again.patch diff --git a/test/chj-home/0117-.bashrc-make-error-display-nicer-on-the-visual-syste.patch b/split-patch/test/chj-home/0117-.bashrc-make-error-display-nicer-on-the-visual-syste.patch similarity index 100% rename from test/chj-home/0117-.bashrc-make-error-display-nicer-on-the-visual-syste.patch rename to split-patch/test/chj-home/0117-.bashrc-make-error-display-nicer-on-the-visual-syste.patch diff --git a/test/chj-home/0118-.bashrc-even-nicer.patch b/split-patch/test/chj-home/0118-.bashrc-even-nicer.patch similarity index 100% rename from test/chj-home/0118-.bashrc-even-nicer.patch rename to split-patch/test/chj-home/0118-.bashrc-even-nicer.patch diff --git a/test/chj-home/0119-.bashrc-go-back-to-red.patch b/split-patch/test/chj-home/0119-.bashrc-go-back-to-red.patch similarity index 100% rename from test/chj-home/0119-.bashrc-go-back-to-red.patch rename to split-patch/test/chj-home/0119-.bashrc-go-back-to-red.patch diff --git a/test/chj-home/0120-Formatting.patch b/split-patch/test/chj-home/0120-Formatting.patch similarity index 100% rename from test/chj-home/0120-Formatting.patch rename to split-patch/test/chj-home/0120-Formatting.patch diff --git a/test/chj-home/0121-Abstraction.patch b/split-patch/test/chj-home/0121-Abstraction.patch similarity index 100% rename from test/chj-home/0121-Abstraction.patch rename to split-patch/test/chj-home/0121-Abstraction.patch diff --git a/test/chj-home/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders.patch b/split-patch/test/chj-home/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders.patch similarity index 100% rename from test/chj-home/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders.patch rename to split-patch/test/chj-home/0122-.bashrc-make-cdn-cd_newest-ignore-.git-folders.patch diff --git a/test/chj-home/0123-.chj-home-init-rely-on-.METADATA-v2.options.patch b/split-patch/test/chj-home/0123-.chj-home-init-rely-on-.METADATA-v2.options.patch similarity index 100% rename from test/chj-home/0123-.chj-home-init-rely-on-.METADATA-v2.options.patch rename to split-patch/test/chj-home/0123-.chj-home-init-rely-on-.METADATA-v2.options.patch diff --git a/test/chj-home/0124-.chj-home-init-make-.METADATA-v2.ignore-too.patch b/split-patch/test/chj-home/0124-.chj-home-init-make-.METADATA-v2.ignore-too.patch similarity index 100% rename from test/chj-home/0124-.chj-home-init-make-.METADATA-v2.ignore-too.patch rename to split-patch/test/chj-home/0124-.chj-home-init-make-.METADATA-v2.ignore-too.patch diff --git a/test/chj-home/0125-.xscreensaver.patch b/split-patch/test/chj-home/0125-.xscreensaver.patch similarity index 100% rename from test/chj-home/0125-.xscreensaver.patch rename to split-patch/test/chj-home/0125-.xscreensaver.patch diff --git a/test/chj-home/0126-Move-.xscreensaver-to-.chj-home-again.patch b/split-patch/test/chj-home/0126-Move-.xscreensaver-to-.chj-home-again.patch similarity index 100% rename from test/chj-home/0126-Move-.xscreensaver-to-.chj-home-again.patch rename to split-patch/test/chj-home/0126-Move-.xscreensaver-to-.chj-home-again.patch diff --git a/test/chj-home/0127-Rename.patch b/split-patch/test/chj-home/0127-Rename.patch similarity index 100% rename from test/chj-home/0127-Rename.patch rename to split-patch/test/chj-home/0127-Rename.patch diff --git a/test/chj-home/0128-init-install-.xscreensaver-if-not-already-exists.patch b/split-patch/test/chj-home/0128-init-install-.xscreensaver-if-not-already-exists.patch similarity index 100% rename from test/chj-home/0128-init-install-.xscreensaver-if-not-already-exists.patch rename to split-patch/test/chj-home/0128-init-install-.xscreensaver-if-not-already-exists.patch diff --git a/test/chj-home/0129-init-more-fix-perms.patch b/split-patch/test/chj-home/0129-init-more-fix-perms.patch similarity index 100% rename from test/chj-home/0129-init-more-fix-perms.patch rename to split-patch/test/chj-home/0129-init-more-fix-perms.patch diff --git a/test/chj-home/0130-.bashrc-add-j-same-as-cj.patch b/split-patch/test/chj-home/0130-.bashrc-add-j-same-as-cj.patch similarity index 100% rename from test/chj-home/0130-.bashrc-add-j-same-as-cj.patch rename to split-patch/test/chj-home/0130-.bashrc-add-j-same-as-cj.patch diff --git a/test/chj-home/0131-.bashrc-add-cgdi.patch b/split-patch/test/chj-home/0131-.bashrc-add-cgdi.patch similarity index 100% rename from test/chj-home/0131-.bashrc-add-cgdi.patch rename to split-patch/test/chj-home/0131-.bashrc-add-cgdi.patch diff --git a/test/chj-home/0132-.bashrc-cgdi-fix-proper-error-handling.patch b/split-patch/test/chj-home/0132-.bashrc-cgdi-fix-proper-error-handling.patch similarity index 100% rename from test/chj-home/0132-.bashrc-cgdi-fix-proper-error-handling.patch rename to split-patch/test/chj-home/0132-.bashrc-cgdi-fix-proper-error-handling.patch diff --git a/test/chj-home/0133-.bashrc-add-cgd.patch b/split-patch/test/chj-home/0133-.bashrc-add-cgd.patch similarity index 100% rename from test/chj-home/0133-.bashrc-add-cgd.patch rename to split-patch/test/chj-home/0133-.bashrc-add-cgd.patch diff --git a/test/chj-home/0134-.xscreensaver-blank-and-off-fast.patch b/split-patch/test/chj-home/0134-.xscreensaver-blank-and-off-fast.patch similarity index 100% rename from test/chj-home/0134-.xscreensaver-blank-and-off-fast.patch rename to split-patch/test/chj-home/0134-.xscreensaver-blank-and-off-fast.patch diff --git a/test/chj-home/0135-Add-cgi-cgii.patch b/split-patch/test/chj-home/0135-Add-cgi-cgii.patch similarity index 100% rename from test/chj-home/0135-Add-cgi-cgii.patch rename to split-patch/test/chj-home/0135-Add-cgi-cgii.patch diff --git a/test/chj-home/0136-.xscreensaver-oh-that-was-bad-try-this.patch b/split-patch/test/chj-home/0136-.xscreensaver-oh-that-was-bad-try-this.patch similarity index 100% rename from test/chj-home/0136-.xscreensaver-oh-that-was-bad-try-this.patch rename to split-patch/test/chj-home/0136-.xscreensaver-oh-that-was-bad-try-this.patch diff --git a/test/chj-home/0137-.xscreensaver-more-trying-to-get-it-to-turn-off.patch b/split-patch/test/chj-home/0137-.xscreensaver-more-trying-to-get-it-to-turn-off.patch similarity index 100% rename from test/chj-home/0137-.xscreensaver-more-trying-to-get-it-to-turn-off.patch rename to split-patch/test/chj-home/0137-.xscreensaver-more-trying-to-get-it-to-turn-off.patch diff --git a/test/chj-home/0138-.xscreensaver-turn-off-dpms.patch b/split-patch/test/chj-home/0138-.xscreensaver-turn-off-dpms.patch similarity index 100% rename from test/chj-home/0138-.xscreensaver-turn-off-dpms.patch rename to split-patch/test/chj-home/0138-.xscreensaver-turn-off-dpms.patch diff --git a/test/chj-home/0139-.xscreensaver-blank-only.patch b/split-patch/test/chj-home/0139-.xscreensaver-blank-only.patch similarity index 100% rename from test/chj-home/0139-.xscreensaver-blank-only.patch rename to split-patch/test/chj-home/0139-.xscreensaver-blank-only.patch diff --git a/test/chj-home/0140-Add-a-default-.gdbinit.patch b/split-patch/test/chj-home/0140-Add-a-default-.gdbinit.patch similarity index 100% rename from test/chj-home/0140-Add-a-default-.gdbinit.patch rename to split-patch/test/chj-home/0140-Add-a-default-.gdbinit.patch diff --git a/test/chj-home/0141-Set-BROWSER-to-firefox-by-default.patch b/split-patch/test/chj-home/0141-Set-BROWSER-to-firefox-by-default.patch similarity index 100% rename from test/chj-home/0141-Set-BROWSER-to-firefox-by-default.patch rename to split-patch/test/chj-home/0141-Set-BROWSER-to-firefox-by-default.patch diff --git a/test/chj-home/0142-.bashrc-remove-j-again-not-using-it.patch b/split-patch/test/chj-home/0142-.bashrc-remove-j-again-not-using-it.patch similarity index 100% rename from test/chj-home/0142-.bashrc-remove-j-again-not-using-it.patch rename to split-patch/test/chj-home/0142-.bashrc-remove-j-again-not-using-it.patch diff --git a/test/chj-home/0143-.bashrc-add-ce.patch b/split-patch/test/chj-home/0143-.bashrc-add-ce.patch similarity index 100% rename from test/chj-home/0143-.bashrc-add-ce.patch rename to split-patch/test/chj-home/0143-.bashrc-add-ce.patch diff --git a/test/chj-home/0144-.bashrc-add-cdnn-cdnnn.patch b/split-patch/test/chj-home/0144-.bashrc-add-cdnn-cdnnn.patch similarity index 100% rename from test/chj-home/0144-.bashrc-add-cdnn-cdnnn.patch rename to split-patch/test/chj-home/0144-.bashrc-add-cdnn-cdnnn.patch diff --git a/test/chj-home/0145-Change-background-color-for-errors-to-bright-yellow.patch b/split-patch/test/chj-home/0145-Change-background-color-for-errors-to-bright-yellow.patch similarity index 100% rename from test/chj-home/0145-Change-background-color-for-errors-to-bright-yellow.patch rename to split-patch/test/chj-home/0145-Change-background-color-for-errors-to-bright-yellow.patch diff --git a/test/chj-home/0146-Background-orange.patch b/split-patch/test/chj-home/0146-Background-orange.patch similarity index 100% rename from test/chj-home/0146-Background-orange.patch rename to split-patch/test/chj-home/0146-Background-orange.patch diff --git a/test/chj-home/0147-Revert-Background-orange.patch b/split-patch/test/chj-home/0147-Revert-Background-orange.patch similarity index 100% rename from test/chj-home/0147-Revert-Background-orange.patch rename to split-patch/test/chj-home/0147-Revert-Background-orange.patch diff --git a/test/chj-home/0148-Change-background-back-to-red.patch b/split-patch/test/chj-home/0148-Change-background-back-to-red.patch similarity index 100% rename from test/chj-home/0148-Change-background-back-to-red.patch rename to split-patch/test/chj-home/0148-Change-background-back-to-red.patch diff --git a/test/chj-home/0149-.bashrc-wg-is-also-provided-by-wireguard-now.patch b/split-patch/test/chj-home/0149-.bashrc-wg-is-also-provided-by-wireguard-now.patch similarity index 100% rename from test/chj-home/0149-.bashrc-wg-is-also-provided-by-wireguard-now.patch rename to split-patch/test/chj-home/0149-.bashrc-wg-is-also-provided-by-wireguard-now.patch diff --git a/test/chj-home/0150-.bashrc-replace-ad-hoc-code-with-lastdir.patch b/split-patch/test/chj-home/0150-.bashrc-replace-ad-hoc-code-with-lastdir.patch similarity index 100% rename from test/chj-home/0150-.bashrc-replace-ad-hoc-code-with-lastdir.patch rename to split-patch/test/chj-home/0150-.bashrc-replace-ad-hoc-code-with-lastdir.patch diff --git a/test/chj-home/0151-.bashrc-cgd-accept-index-argument.patch b/split-patch/test/chj-home/0151-.bashrc-cgd-accept-index-argument.patch similarity index 100% rename from test/chj-home/0151-.bashrc-cgd-accept-index-argument.patch rename to split-patch/test/chj-home/0151-.bashrc-cgd-accept-index-argument.patch diff --git a/test/chj-home/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index.patch b/split-patch/test/chj-home/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index.patch similarity index 100% rename from test/chj-home/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index.patch rename to split-patch/test/chj-home/0152-.bashrc-cgd-fix-do-not-treat-a-lone-number-as-index.patch diff --git a/test/chj-home/0153-.bashrc-add-ct.patch b/split-patch/test/chj-home/0153-.bashrc-add-ct.patch similarity index 100% rename from test/chj-home/0153-.bashrc-add-ct.patch rename to split-patch/test/chj-home/0153-.bashrc-add-ct.patch diff --git a/test/chj-home/0154-.bashrc-update-for-lastitem-from-chj-rustbin.patch b/split-patch/test/chj-home/0154-.bashrc-update-for-lastitem-from-chj-rustbin.patch similarity index 100% rename from test/chj-home/0154-.bashrc-update-for-lastitem-from-chj-rustbin.patch rename to split-patch/test/chj-home/0154-.bashrc-update-for-lastitem-from-chj-rustbin.patch diff --git a/test/chj-home/0155-.Xresources-finally-make-rxvt-a-bit-larger.patch b/split-patch/test/chj-home/0155-.Xresources-finally-make-rxvt-a-bit-larger.patch similarity index 100% rename from test/chj-home/0155-.Xresources-finally-make-rxvt-a-bit-larger.patch rename to split-patch/test/chj-home/0155-.Xresources-finally-make-rxvt-a-bit-larger.patch diff --git a/test/chj-home/0156-.xmodmaprc-change-print-screen-button-back-to-Print.patch b/split-patch/test/chj-home/0156-.xmodmaprc-change-print-screen-button-back-to-Print.patch similarity index 100% rename from test/chj-home/0156-.xmodmaprc-change-print-screen-button-back-to-Print.patch rename to split-patch/test/chj-home/0156-.xmodmaprc-change-print-screen-button-back-to-Print.patch diff --git a/test/chj-home/0157-.bash_profile-add-my-new-key-fingerprint.patch b/split-patch/test/chj-home/0157-.bash_profile-add-my-new-key-fingerprint.patch similarity index 100% rename from test/chj-home/0157-.bash_profile-add-my-new-key-fingerprint.patch rename to split-patch/test/chj-home/0157-.bash_profile-add-my-new-key-fingerprint.patch diff --git a/test/chj-home/0158-.chj-home-init-Git-rebase-false.patch b/split-patch/test/chj-home/0158-.chj-home-init-Git-rebase-false.patch similarity index 100% rename from test/chj-home/0158-.chj-home-init-Git-rebase-false.patch rename to split-patch/test/chj-home/0158-.chj-home-init-Git-rebase-false.patch diff --git a/test/chj-home/0159-.gitignore_global-C-development.patch b/split-patch/test/chj-home/0159-.gitignore_global-C-development.patch similarity index 100% rename from test/chj-home/0159-.gitignore_global-C-development.patch rename to split-patch/test/chj-home/0159-.gitignore_global-C-development.patch diff --git a/test/chj-home/0160-.bashrc-update-wg-alias.patch b/split-patch/test/chj-home/0160-.bashrc-update-wg-alias.patch similarity index 100% rename from test/chj-home/0160-.bashrc-update-wg-alias.patch rename to split-patch/test/chj-home/0160-.bashrc-update-wg-alias.patch diff --git a/test/chj-home/0161-init-remove-xemacs-setup.patch b/split-patch/test/chj-home/0161-init-remove-xemacs-setup.patch similarity index 100% rename from test/chj-home/0161-init-remove-xemacs-setup.patch rename to split-patch/test/chj-home/0161-init-remove-xemacs-setup.patch diff --git a/test/chj-home/0162-init-clone-chj-emacs-per-user-now.patch b/split-patch/test/chj-home/0162-init-clone-chj-emacs-per-user-now.patch similarity index 100% rename from test/chj-home/0162-init-clone-chj-emacs-per-user-now.patch rename to split-patch/test/chj-home/0162-init-clone-chj-emacs-per-user-now.patch diff --git a/test/chj-home/0163-init-actually-do-need-to-import-the-other-key-as-wel.patch b/split-patch/test/chj-home/0163-init-actually-do-need-to-import-the-other-key-as-wel.patch similarity index 100% rename from test/chj-home/0163-init-actually-do-need-to-import-the-other-key-as-wel.patch rename to split-patch/test/chj-home/0163-init-actually-do-need-to-import-the-other-key-as-wel.patch diff --git a/test/chj-home/0164-.bash_profile-add-dir-to-newest-clang-to-PATH.patch b/split-patch/test/chj-home/0164-.bash_profile-add-dir-to-newest-clang-to-PATH.patch similarity index 100% rename from test/chj-home/0164-.bash_profile-add-dir-to-newest-clang-to-PATH.patch rename to split-patch/test/chj-home/0164-.bash_profile-add-dir-to-newest-clang-to-PATH.patch diff --git a/test/chj-home/0165-.bash_profile-increase-history-size-even-more.patch b/split-patch/test/chj-home/0165-.bash_profile-increase-history-size-even-more.patch similarity index 100% rename from test/chj-home/0165-.bash_profile-increase-history-size-even-more.patch rename to split-patch/test/chj-home/0165-.bash_profile-increase-history-size-even-more.patch diff --git a/test/chj-home/0166-remove-emacs-geometry.patch b/split-patch/test/chj-home/0166-remove-emacs-geometry.patch similarity index 100% rename from test/chj-home/0166-remove-emacs-geometry.patch rename to split-patch/test/chj-home/0166-remove-emacs-geometry.patch diff --git a/test/chj-home/0167-.bashrc-add-ul.patch b/split-patch/test/chj-home/0167-.bashrc-add-ul.patch similarity index 100% rename from test/chj-home/0167-.bashrc-add-ul.patch rename to split-patch/test/chj-home/0167-.bashrc-add-ul.patch diff --git a/test/chj-home/0168-Add-.xmodmaprc_laptopkeyboard.patch b/split-patch/test/chj-home/0168-Add-.xmodmaprc_laptopkeyboard.patch similarity index 100% rename from test/chj-home/0168-Add-.xmodmaprc_laptopkeyboard.patch rename to split-patch/test/chj-home/0168-Add-.xmodmaprc_laptopkeyboard.patch diff --git a/test/chj-home/0169-Add-holidays-in-Switzerland.patch b/split-patch/test/chj-home/0169-Add-holidays-in-Switzerland.patch similarity index 100% rename from test/chj-home/0169-Add-holidays-in-Switzerland.patch rename to split-patch/test/chj-home/0169-Add-holidays-in-Switzerland.patch diff --git a/test/chj-home/0170-.holidays.tsv-english-Basel.patch b/split-patch/test/chj-home/0170-.holidays.tsv-english-Basel.patch similarity index 100% rename from test/chj-home/0170-.holidays.tsv-english-Basel.patch rename to split-patch/test/chj-home/0170-.holidays.tsv-english-Basel.patch diff --git a/test/chj-home/0171-init-import-gpg-keys-first.patch b/split-patch/test/chj-home/0171-init-import-gpg-keys-first.patch similarity index 100% rename from test/chj-home/0171-init-import-gpg-keys-first.patch rename to split-patch/test/chj-home/0171-init-import-gpg-keys-first.patch diff --git a/test/chj-home/0172-init-yes-mod-user-imports-the-keys-already.patch b/split-patch/test/chj-home/0172-init-yes-mod-user-imports-the-keys-already.patch similarity index 100% rename from test/chj-home/0172-init-yes-mod-user-imports-the-keys-already.patch rename to split-patch/test/chj-home/0172-init-yes-mod-user-imports-the-keys-already.patch diff --git a/test/chj-home/0173-.gitignore_global-ignore-.cache.patch b/split-patch/test/chj-home/0173-.gitignore_global-ignore-.cache.patch similarity index 100% rename from test/chj-home/0173-.gitignore_global-ignore-.cache.patch rename to split-patch/test/chj-home/0173-.gitignore_global-ignore-.cache.patch diff --git a/test/chj-home/0174-Prioritize-my-mt.patch b/split-patch/test/chj-home/0174-Prioritize-my-mt.patch similarity index 100% rename from test/chj-home/0174-Prioritize-my-mt.patch rename to split-patch/test/chj-home/0174-Prioritize-my-mt.patch diff --git a/test/chj-home/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i.patch b/split-patch/test/chj-home/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i.patch similarity index 100% rename from test/chj-home/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i.patch rename to split-patch/test/chj-home/0175-holidays-put-not-in-Basel-dates-in-square-brackets-i.patch diff --git a/test/chj-home/0176-.bashrc-add-cdat.patch b/split-patch/test/chj-home/0176-.bashrc-add-cdat.patch similarity index 100% rename from test/chj-home/0176-.bashrc-add-cdat.patch rename to split-patch/test/chj-home/0176-.bashrc-add-cdat.patch diff --git a/test/chj-home/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks.patch b/split-patch/test/chj-home/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks.patch similarity index 100% rename from test/chj-home/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks.patch rename to split-patch/test/chj-home/0177-.gitignore_global-allow-PATCHES-dirs-to-be-symlinks.patch diff --git a/test/chj-home/0178-.bashrc-cdat-pass-arguments-to-dat.patch b/split-patch/test/chj-home/0178-.bashrc-cdat-pass-arguments-to-dat.patch similarity index 100% rename from test/chj-home/0178-.bashrc-cdat-pass-arguments-to-dat.patch rename to split-patch/test/chj-home/0178-.bashrc-cdat-pass-arguments-to-dat.patch diff --git a/test/chj-home/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth.patch b/split-patch/test/chj-home/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth.patch similarity index 100% rename from test/chj-home/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth.patch rename to split-patch/test/chj-home/0179-.bashrc-change-cdnn-cdnnn-to-use-lastdir-depth.patch diff --git a/test/chj-home/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir.patch b/split-patch/test/chj-home/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir.patch similarity index 100% rename from test/chj-home/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir.patch rename to split-patch/test/chj-home/0180-.bashrc-cdn-cdnn-cdnnn-pass-a-option-to-lastdir.patch diff --git a/test/chj-home/0181-.bashrc-finally-remove-df-wrapper.patch b/split-patch/test/chj-home/0181-.bashrc-finally-remove-df-wrapper.patch similarity index 100% rename from test/chj-home/0181-.bashrc-finally-remove-df-wrapper.patch rename to split-patch/test/chj-home/0181-.bashrc-finally-remove-df-wrapper.patch diff --git a/test/chj-home/0182-.chj-home-init-follow-BROWSER-env-var-protocol.patch b/split-patch/test/chj-home/0182-.chj-home-init-follow-BROWSER-env-var-protocol.patch similarity index 100% rename from test/chj-home/0182-.chj-home-init-follow-BROWSER-env-var-protocol.patch rename to split-patch/test/chj-home/0182-.chj-home-init-follow-BROWSER-env-var-protocol.patch diff --git a/test/chj-home/0183-.chj-home-init-use-ew-as-editor.patch b/split-patch/test/chj-home/0183-.chj-home-init-use-ew-as-editor.patch similarity index 100% rename from test/chj-home/0183-.chj-home-init-use-ew-as-editor.patch rename to split-patch/test/chj-home/0183-.chj-home-init-use-ew-as-editor.patch diff --git a/test/chj-home/0184-.bashrc-add-cdgit.patch b/split-patch/test/chj-home/0184-.bashrc-add-cdgit.patch similarity index 100% rename from test/chj-home/0184-.bashrc-add-cdgit.patch rename to split-patch/test/chj-home/0184-.bashrc-add-cdgit.patch diff --git a/test/chj-home/0185-.bash_profile-need-to-set-umask-now.patch b/split-patch/test/chj-home/0185-.bash_profile-need-to-set-umask-now.patch similarity index 100% rename from test/chj-home/0185-.bash_profile-need-to-set-umask-now.patch rename to split-patch/test/chj-home/0185-.bash_profile-need-to-set-umask-now.patch diff --git a/test/chj-home/0186-.gitignore_global-ignore-.cj-cargolock.patch b/split-patch/test/chj-home/0186-.gitignore_global-ignore-.cj-cargolock.patch similarity index 100% rename from test/chj-home/0186-.gitignore_global-ignore-.cj-cargolock.patch rename to split-patch/test/chj-home/0186-.gitignore_global-ignore-.cj-cargolock.patch diff --git a/test/chj-home/0187-.gitignore_global-ignore-__pycache__.patch b/split-patch/test/chj-home/0187-.gitignore_global-ignore-__pycache__.patch similarity index 100% rename from test/chj-home/0187-.gitignore_global-ignore-__pycache__.patch rename to split-patch/test/chj-home/0187-.gitignore_global-ignore-__pycache__.patch diff --git a/test/chj-home/0188-.bashrc-add-cdnnnn-and-cdnnnnn.patch b/split-patch/test/chj-home/0188-.bashrc-add-cdnnnn-and-cdnnnnn.patch similarity index 100% rename from test/chj-home/0188-.bashrc-add-cdnnnn-and-cdnnnnn.patch rename to split-patch/test/chj-home/0188-.bashrc-add-cdnnnn-and-cdnnnnn.patch diff --git a/test/chj-home/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn.patch b/split-patch/test/chj-home/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn.patch similarity index 100% rename from test/chj-home/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn.patch rename to split-patch/test/chj-home/0189-.bashrc-add-cdnnnnnn-and-cdnnnnnnn.patch diff --git a/test/chj-home/0190-.bashrc-update-color-detection.patch b/split-patch/test/chj-home/0190-.bashrc-update-color-detection.patch similarity index 100% rename from test/chj-home/0190-.bashrc-update-color-detection.patch rename to split-patch/test/chj-home/0190-.bashrc-update-color-detection.patch diff --git a/test/chj-home/0191-.bashrc-add-lft.patch b/split-patch/test/chj-home/0191-.bashrc-add-lft.patch similarity index 100% rename from test/chj-home/0191-.bashrc-add-lft.patch rename to split-patch/test/chj-home/0191-.bashrc-add-lft.patch diff --git a/test/div-expected/--/0001-PART-3/0001-PART-3-src_kitschcell.rs.patch b/split-patch/test/div-expected/--/0001-PART-3/0001-PART-3-src_kitschcell.rs.patch similarity index 100% rename from test/div-expected/--/0001-PART-3/0001-PART-3-src_kitschcell.rs.patch rename to split-patch/test/div-expected/--/0001-PART-3/0001-PART-3-src_kitschcell.rs.patch diff --git a/test/div-expected/--/0001-PART-3/0001-PART-3-src_leaked_region.rs.patch b/split-patch/test/div-expected/--/0001-PART-3/0001-PART-3-src_leaked_region.rs.patch similarity index 100% rename from test/div-expected/--/0001-PART-3/0001-PART-3-src_leaked_region.rs.patch rename to split-patch/test/div-expected/--/0001-PART-3/0001-PART-3-src_leaked_region.rs.patch diff --git a/test/div-expected/--/0001-PART-3/0001-PART-3-src_lib.rs.patch b/split-patch/test/div-expected/--/0001-PART-3/0001-PART-3-src_lib.rs.patch similarity index 100% rename from test/div-expected/--/0001-PART-3/0001-PART-3-src_lib.rs.patch rename to split-patch/test/div-expected/--/0001-PART-3/0001-PART-3-src_lib.rs.patch diff --git a/test/div-expected/--/0001-PART-3/0001-PART-3-src_lst_get_items.rs.patch b/split-patch/test/div-expected/--/0001-PART-3/0001-PART-3-src_lst_get_items.rs.patch similarity index 100% rename from test/div-expected/--/0001-PART-3/0001-PART-3-src_lst_get_items.rs.patch rename to split-patch/test/div-expected/--/0001-PART-3/0001-PART-3-src_lst_get_items.rs.patch diff --git a/test/div-expected/--/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs.patch b/split-patch/test/div-expected/--/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs.patch similarity index 100% rename from test/div-expected/--/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs.patch rename to split-patch/test/div-expected/--/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs.patch diff --git a/test/div-expected/--/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs.patch b/split-patch/test/div-expected/--/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs.patch similarity index 100% rename from test/div-expected/--/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs.patch rename to split-patch/test/div-expected/--/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs.patch diff --git a/test/div-expected/--/0001-PART-3/_list b/split-patch/test/div-expected/--/0001-PART-3/_list similarity index 100% rename from test/div-expected/--/0001-PART-3/_list rename to split-patch/test/div-expected/--/0001-PART-3/_list diff --git a/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs.patch b/split-patch/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs.patch similarity index 100% rename from test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs.patch rename to split-patch/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs.patch diff --git a/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_leaked_region.rs.patch b/split-patch/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_leaked_region.rs.patch similarity index 100% rename from test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_leaked_region.rs.patch rename to split-patch/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_leaked_region.rs.patch diff --git a/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs.patch b/split-patch/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs.patch similarity index 100% rename from test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs.patch rename to split-patch/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs.patch diff --git a/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_mod.rs.patch b/split-patch/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_mod.rs.patch similarity index 100% rename from test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_mod.rs.patch rename to split-patch/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_mod.rs.patch diff --git a/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_possibly_segmented_path.rs.patch b/split-patch/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_possibly_segmented_path.rs.patch similarity index 100% rename from test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_possibly_segmented_path.rs.patch rename to split-patch/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_possibly_segmented_path.rs.patch diff --git a/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_segmented_path.rs.patch b/split-patch/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_segmented_path.rs.patch similarity index 100% rename from test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_segmented_path.rs.patch rename to split-patch/test/div-expected/--/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_segmented_path.rs.patch diff --git a/test/div-expected/--/0006-segmented-paths-not-used-yet/_list b/split-patch/test/div-expected/--/0006-segmented-paths-not-used-yet/_list similarity index 100% rename from test/div-expected/--/0006-segmented-paths-not-used-yet/_list rename to split-patch/test/div-expected/--/0006-segmented-paths-not-used-yet/_list diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_kitschcell.rs-000.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_kitschcell.rs-000.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_kitschcell.rs-000.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_kitschcell.rs-000.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_leaked_region.rs-000.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_leaked_region.rs-000.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_leaked_region.rs-000.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_leaked_region.rs-000.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lib.rs-000.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lib.rs-000.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lib.rs-000.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lib.rs-000.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-000.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-000.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-000.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-000.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-001.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-001.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-001.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-001.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-002.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-002.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-002.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-002.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-003.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-003.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-003.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-003.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-004.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-004.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-004.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-004.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-005.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-005.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-005.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-005.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-006.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-006.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-006.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-006.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-007.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-007.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-007.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-007.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-008.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-008.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-008.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-008.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-009.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-009.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-009.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-009.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-010.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-010.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-010.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-010.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-011.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-011.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-011.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-011.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-012.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-012.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-012.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-012.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-013.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-013.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-013.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-013.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-014.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-014.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-014.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-014.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-015.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-015.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-015.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-015.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-016.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-016.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-016.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-016.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-017.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-017.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-017.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-017.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-018.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-018.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-018.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-018.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-019.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-019.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-019.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-019.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-020.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-020.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-020.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-020.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-021.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-021.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-021.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-021.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-022.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-022.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-022.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-022.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-023.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-023.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-023.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-023.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-024.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-024.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-024.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-024.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-025.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-025.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-025.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_get_items.rs-025.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-000.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-000.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-000.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-000.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-001.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-001.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-001.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-001.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-002.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-002.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-002.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-002.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-003.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-003.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-003.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-003.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-004.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-004.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-004.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-004.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-005.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-005.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-005.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-005.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-006.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-006.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-006.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-006.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-007.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-007.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-007.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-007.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-008.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-008.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-008.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-008.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-009.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-009.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-009.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-009.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-010.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-010.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-010.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-010.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-011.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-011.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-011.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-011.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-012.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-012.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-012.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-012.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-013.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-013.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-013.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-013.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-014.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-014.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-014.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-014.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-015.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-015.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-015.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-015.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-000.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-000.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-000.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-000.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-001.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-001.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-001.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-001.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-002.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-002.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-002.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-002.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-003.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-003.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-003.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-003.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-004.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-004.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-004.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-004.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-005.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-005.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-005.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-005.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-006.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-006.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-006.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-006.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-007.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-007.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-007.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-007.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-008.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-008.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-008.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-008.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-009.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-009.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-009.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-009.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-010.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-010.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-010.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-010.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-011.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-011.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-011.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-011.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-012.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-012.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-012.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-012.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-013.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-013.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-013.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-013.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-014.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-014.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-014.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-014.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-015.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-015.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-015.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-015.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-016.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-016.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-016.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-016.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-017.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-017.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-017.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-017.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-018.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-018.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-018.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-018.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-019.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-019.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-019.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-019.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-020.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-020.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-020.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-020.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-021.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-021.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-021.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-021.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-022.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-022.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-022.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-022.patch diff --git a/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-023.patch b/split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-023.patch similarity index 100% rename from test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-023.patch rename to split-patch/test/div-expected/--changes/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-023.patch diff --git a/test/div-expected/--changes/0001-PART-3/_list b/split-patch/test/div-expected/--changes/0001-PART-3/_list similarity index 100% rename from test/div-expected/--changes/0001-PART-3/_list rename to split-patch/test/div-expected/--changes/0001-PART-3/_list diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-000.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-000.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-000.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-000.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-001.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-001.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-001.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-001.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-002.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-002.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-002.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-002.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-003.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-003.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-003.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-003.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-004.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-004.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-004.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-004.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-005.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-005.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-005.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-005.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-006.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-006.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-006.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-006.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-007.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-007.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-007.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-007.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_leaked_region.rs-000.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_leaked_region.rs-000.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_leaked_region.rs-000.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_leaked_region.rs-000.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-000.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-000.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-000.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-000.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-001.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-001.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-001.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-001.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-002.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-002.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-002.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-002.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-003.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-003.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-003.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-003.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-004.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-004.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-004.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-004.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-005.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-005.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-005.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-005.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-006.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-006.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-006.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-006.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-007.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-007.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-007.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-007.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-008.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-008.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-008.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-008.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-009.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-009.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-009.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-009.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-010.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-010.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-010.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-010.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-011.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-011.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-011.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-011.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-012.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-012.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-012.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-012.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-013.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-013.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-013.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-013.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-014.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-014.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-014.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-014.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-015.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-015.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-015.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-015.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-016.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-016.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-016.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-016.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-017.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-017.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-017.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-017.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-018.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-018.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-018.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-018.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-019.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-019.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-019.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-019.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-020.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-020.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-020.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-020.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-021.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-021.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-021.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-021.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-022.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-022.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-022.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-022.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-023.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-023.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-023.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-023.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_mod.rs-000.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_mod.rs-000.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_mod.rs-000.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_mod.rs-000.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_possibly_segmented_path.rs-000.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_possibly_segmented_path.rs-000.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_possibly_segmented_path.rs-000.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_possibly_segmented_path.rs-000.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_segmented_path.rs-000.patch b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_segmented_path.rs-000.patch similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_segmented_path.rs-000.patch rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_segmented_path.rs-000.patch diff --git a/test/div-expected/--changes/0006-segmented-paths-not-used-yet/_list b/split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/_list similarity index 100% rename from test/div-expected/--changes/0006-segmented-paths-not-used-yet/_list rename to split-patch/test/div-expected/--changes/0006-segmented-paths-not-used-yet/_list diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_kitschcell.rs-000.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_kitschcell.rs-000.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_kitschcell.rs-000.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_kitschcell.rs-000.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_leaked_region.rs-000.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_leaked_region.rs-000.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_leaked_region.rs-000.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_leaked_region.rs-000.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lib.rs-000.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lib.rs-000.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lib.rs-000.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lib.rs-000.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-000.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-000.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-000.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-000.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-001.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-001.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-001.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-001.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-002.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-002.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-002.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-002.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-003.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-003.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-003.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-003.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-004.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-004.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-004.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-004.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-005.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-005.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-005.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-005.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-006.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-006.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-006.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-006.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-007.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-007.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-007.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_get_items.rs-007.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-000.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-000.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-000.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_possibly_segmented_path.rs-000.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-000.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-000.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-000.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-000.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-001.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-001.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-001.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-001.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-002.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-002.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-002.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-002.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-003.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-003.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-003.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-003.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-004.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-004.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-004.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-004.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-005.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-005.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-005.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-005.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-006.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-006.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-006.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-006.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-007.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-007.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-007.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-007.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-008.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-008.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-008.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-008.patch diff --git a/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-009.patch b/split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-009.patch similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-009.patch rename to split-patch/test/div-expected/--hunks/0001-PART-3/0001-PART-3-src_lst_segmented_path.rs-009.patch diff --git a/test/div-expected/--hunks/0001-PART-3/_list b/split-patch/test/div-expected/--hunks/0001-PART-3/_list similarity index 100% rename from test/div-expected/--hunks/0001-PART-3/_list rename to split-patch/test/div-expected/--hunks/0001-PART-3/_list diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-000.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-000.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-000.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-000.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-001.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-001.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-001.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-001.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-002.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-002.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-002.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-002.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-003.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-003.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-003.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-003.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-004.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-004.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-004.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-004.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-005.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-005.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-005.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-005.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-006.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-006.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-006.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_bin_lst.rs-006.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_leaked_region.rs-000.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_leaked_region.rs-000.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_leaked_region.rs-000.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_leaked_region.rs-000.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-000.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-000.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-000.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-000.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-001.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-001.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-001.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-001.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-002.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-002.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-002.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-002.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-003.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-003.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-003.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-003.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-004.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-004.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-004.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-004.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-005.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-005.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-005.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-005.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-006.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-006.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-006.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-006.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-007.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-007.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-007.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-007.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-008.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-008.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-008.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-008.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-009.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-009.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-009.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-009.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-010.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-010.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-010.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-010.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-011.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-011.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-011.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-011.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-012.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-012.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-012.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_get_items.rs-012.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_mod.rs-000.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_mod.rs-000.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_mod.rs-000.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_mod.rs-000.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_possibly_segmented_path.rs-000.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_possibly_segmented_path.rs-000.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_possibly_segmented_path.rs-000.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_possibly_segmented_path.rs-000.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_segmented_path.rs-000.patch b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_segmented_path.rs-000.patch similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_segmented_path.rs-000.patch rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/0006-segmented-paths-not-used-yet-src_lst_segmented_path.rs-000.patch diff --git a/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/_list b/split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/_list similarity index 100% rename from test/div-expected/--hunks/0006-segmented-paths-not-used-yet/_list rename to split-patch/test/div-expected/--hunks/0006-segmented-paths-not-used-yet/_list diff --git a/test/div/0001-PART-3.patch b/split-patch/test/div/0001-PART-3.patch similarity index 100% rename from test/div/0001-PART-3.patch rename to split-patch/test/div/0001-PART-3.patch diff --git a/test/div/0006-segmented-paths-not-used-yet.patch b/split-patch/test/div/0006-segmented-paths-not-used-yet.patch similarity index 100% rename from test/div/0006-segmented-paths-not-used-yet.patch rename to split-patch/test/div/0006-segmented-paths-not-used-yet.patch diff --git a/test/get-input-from-url b/split-patch/test/get-input-from-url similarity index 100% rename from test/get-input-from-url rename to split-patch/test/get-input-from-url diff --git a/test/miri-split-patch b/split-patch/test/miri-split-patch similarity index 100% rename from test/miri-split-patch rename to split-patch/test/miri-split-patch diff --git a/test/run-test-for-input-dir b/split-patch/test/run-test-for-input-dir similarity index 100% rename from test/run-test-for-input-dir rename to split-patch/test/run-test-for-input-dir diff --git a/test/test-split-patches-in-dir.rs b/split-patch/test/test-split-patches-in-dir.rs similarity index 100% rename from test/test-split-patches-in-dir.rs rename to split-patch/test/test-split-patches-in-dir.rs diff --git a/test/Cargo.lock b/test/Cargo.lock new file mode 100644 index 0000000..d80d704 --- /dev/null +++ b/test/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "patchparser-test" +version = "0.1.0" diff --git a/test/Cargo.toml b/test/Cargo.toml new file mode 100644 index 0000000..4d6783d --- /dev/null +++ b/test/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "patchparser-test" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/test/ci-make b/test/ci-make index 30d0e6e..efe4203 100755 --- a/test/ci-make +++ b/test/ci-make @@ -31,7 +31,7 @@ tmpfiles=() for target in "${targets[@]}"; do tmp=$(mktemp) tmpfiles+=("$tmp") - ( run "$target" 2>&1 | target/debug/log-timestamp > "$tmp" ) & + ( run "$target" 2>&1 | test/target/debug/log-timestamp > "$tmp" ) & done for target in "${targets[@]}"; do @@ -42,9 +42,15 @@ exit_code=0 for tmp in "${tmpfiles[@]}"; do echo "========================================================================================" - cat "$tmp" - if ! tail -1 "$tmp" | grep -q ": Ok."; then + if tail -1 "$tmp" | grep -q ": Ok."; then + if [ "${CI_MAKE_VERBOSE-}" == 1 ]; then + cat "$tmp" + else + tail -1 "$tmp" + fi + else exit_code=$((exit_code + 1)) + cat "$tmp" fi done diff --git a/test/log-timestamp.rs b/test/src/bin/log-timestamp.rs similarity index 100% rename from test/log-timestamp.rs rename to test/src/bin/log-timestamp.rs