~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/script.py

  • Committer: Martin Pool
  • Date: 2010-09-13 08:55:08 UTC
  • mfrom: (5417.1.5 scripts)
  • mto: This revision was merged to the branch mainline in revision 5426.
  • Revision ID: mbp@sourcefrog.net-20100913085508-oz74wnsz53hjd4yf
Merge additional fixes for blank lines in scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
    Input lines start with '<'.
57
57
    Output lines start with nothing.
58
58
    Error lines start with '2>'.
 
59
 
 
60
    :return: A sequence of ([args], input, output, errors), where the args are
 
61
        split in to words, and the input, output, and errors are just strings,
 
62
        typically containing newlines.
59
63
    """
60
64
 
61
65
    commands = []
75
79
    lineno = 0
76
80
    input, output, error = None, None, None
77
81
    text = textwrap.dedent(text)
78
 
    for line in text.split('\n'):
 
82
    lines = text.split('\n')
 
83
    # to make use of triple-quoted strings easier, we ignore a blank line
 
84
    # right at the start and right at the end; the rest are meaningful
 
85
    if lines and lines[0] == '':
 
86
        del lines[0]
 
87
    if lines and lines[-1] == '':
 
88
        del lines[-1]
 
89
    for line in lines:
79
90
        lineno += 1
80
91
        # Keep a copy for error reporting
81
92
        orig = line
82
93
        comment =  line.find('#')
83
94
        if comment >= 0:
84
95
            # Delete comments
 
96
            # NB: this syntax means comments are allowed inside output, which
 
97
            # may be confusing...
85
98
            line = line[0:comment]
86
99
            line = line.rstrip()
87
 
        if line == '':
88
 
            # Ignore empty lines
89
 
            continue
 
100
            if line == '':
 
101
                continue
90
102
        if line.startswith('$'):
91
103
            # Time to output the current command
92
104
            add_command(cmd_cur, input, output, error)