~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_split.py

Rework test_script a little bit.


Don't allow someone to request a stdin request to echo.
Echo never reads from stdin, it just echos its arguments.
You use 'cat' if you want to read from stdin.

A few other fixes because the tests were using filenames
that are actually illegal on Windows, rather than just
nonexistant.


Change the exception handling for commands so that
unknown errors don't get silently squashed and then
turn into hard-to-debug errors later.

test_script now passes on Windows.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
        wt.add(['b', 'b/c'])
32
32
        wt.commit('rev1')
33
33
        self.run_bzr('split a/b')
34
 
        self.run_bzr_error(('.* is not versioned',), 'split q')
 
34
        self.run_bzr_error(('.* is not versioned',), 'split q', working_dir='a')
35
35
 
36
36
    def test_split_repo_failure(self):
37
37
        repo = self.make_repository('branch', shared=True, format='knit')