#!/usr/bin/env python
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# Runs an instance of wptserve to allow manual testing of the imported Web
# Platform Tests. The main HTTP server is run on 8001, while the main HTTPS
# server is run on 8444.

import webkitpy.common.version_check

from webkitpy.layout_tests.servers import cli_wrapper
from webkitpy.layout_tests.servers import wptserve

cli_wrapper.main(wptserve.WPTServe)
