Revision 8c6df8f2518e0d04d7814df6fd2d6600e613a9ab authored by Emilio Cobos Álvarez on 09 April 2018, 21:02:15 UTC, committed by moz-wptsync-bot on 09 April 2018, 21:02:15 UTC
Both Blink and WebKit pass the added tests. But of course all this stuff was
untested initially, and my initial naive implementation would fail them.
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=992245
gecko-commit: 5a24374d10f7b33f2582519664a21612c18f8cfb
gecko-integration-branch: central
gecko-reviewers: xidorn
1 parent 46abbd5
Raw File
serve.py
import sys
import logging

try:
    from tools.serve import serve
except ImportError:
    logging.error("tools.serve not found.  Did you forget to run "
                  '"git submodule update --init --recursive"?')
    sys.exit(2)

def main():
    serve.main()
back to top