Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/pybin/tools.py

    r5ea5b28 r84b4d607  
    7979def diff( lhs, rhs ):
    8080        # diff the output of the files
    81         diff_cmd = ("diff --text "
    82 #                               "--ignore-all-space "
    83 #                               "--ignore-blank-lines "
     81        diff_cmd = ("diff --ignore-all-space --text "
     82                                "--ignore-blank-lines "
    8483                                "--old-group-format='\t\tmissing lines :\n"
    8584                                "%%<' \\\n"
     
    247246        if column:
    248247                cmd = "%s 2> /dev/null" % column
    249                 print(cmd)
    250248                proc = Popen(cmd, stdin=PIPE, stderr=None, shell=True)
    251                 proc.communicate(input=text)
     249                proc.communicate(input=text + "\n")
    252250        else:
    253251                print(text)
Note: See TracChangeset for help on using the changeset viewer.