blob: c3b7bd26c60e21fc0d418d36ef027f6d774dfbe1 [file] [log] [blame]
#!/usr/bin/env python
#
# Copyright (C) 2017 Igalia S.L.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public License
# along with this library; see the file COPYING.LIB. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA.
import logging
import os
import sys
import optparse
top_level_directory = os.path.normpath(os.path.join(os.path.dirname(__file__), "..", ".."))
sys.path.insert(0, os.path.join(top_level_directory, "Tools", "jhbuild"))
sys.path.insert(0, os.path.join(top_level_directory, "Tools", "glib"))
import jhbuildutils
from api_test_runner import TestRunner, add_options
class WPETestRunner(TestRunner):
TestRunner.TEST_DIRS = [ "WPE", "WebKit", "JavaScriptCore", "WTF", "WebCore" ]
def __init__(self, options, tests=[]):
super(WPETestRunner, self).__init__("wpe", options, tests)
def is_glib_test(self, test_program):
return os.path.basename(os.path.dirname(test_program)) in ["WPE", "JavaScriptCore"]
def is_google_test(self, test_program):
return os.path.basename(os.path.dirname(test_program)) in ["WebKit", "WTF", "WebCore"]
if __name__ == "__main__":
if not jhbuildutils.enter_jhbuild_environment_if_available("wpe"):
print "***"
print "*** Warning: jhbuild environment not present. Run update-webkitgtk-libs before build-webkit to ensure proper testing."
print "***"
option_parser = optparse.OptionParser(usage='usage: %prog [options] [test...]')
add_options(option_parser);
option_parser.add_option('--display-server', choices=['headless', 'wayland'], default='headless',
help='"headless": Use headless view backend. "wayland": Use the current wayland session.'),
options, args = option_parser.parse_args()
logging.basicConfig(level=logging.INFO, format="%(message)s")
runner = WPETestRunner(options, args)
sys.exit(runner.run_tests())