/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Jelmer Vernooij
  • Date: 2017-09-25 23:13:52 UTC
  • mto: This revision was merged to the branch mainline in revision 6797.
  • Revision ID: jelmer@jelmer.uk-20170925231352-xe9emg0x10yex34e
Fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
 
64
64
update-python3-passing:
65
65
        # Generate a stream for PQM to watch.
66
 
        -$(RM) -f selftest.log
 
66
        grep -v "^#" python3.passing > python3.passing.new
67
67
        BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON3) -Werror -Wignore::ImportWarning -O \
68
68
          ./brz selftest -Oselftest.timeout=120 \
69
 
          --subunit2 $(tests) | tee selftest.log | \
 
69
          --subunit2 $(tests) | \
70
70
          subunit-filter --no-failure --no-error --no-skip | \
71
 
          subunit-ls --no-passthrough > now-working
72
 
        cp python3.passing python3.passing.new
73
 
        cat now-working >> python3.passing.new
74
 
        echo <<EOF>python3.passing\
75
 
# This is the list of tests that are known to pass with Python3.\
76
 
# "make check-nodocs3" verifies that these pass.\
77
 
EOF
78
 
        grep -v "^#" python3.passing.new | uniq | sort >> python3.passing
 
71
          subunit-ls --no-passthrough >> python3.passing.new
 
72
        cp python3.passing python3.passing.old; grep "^#" python3.passing.old > python3.passing
 
73
        sort -u python3.passing.new >> python3.passing
79
74
 
80
75
check-nodocs2: extensions
81
76
        # Generate a stream for PQM to watch.