mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 752031 - Librarify the jsreftest suite; r=dmandelin
Moves the random .py implementation files into a lib subdirectory. --HG-- rename : js/src/tests/manifest.py => js/src/tests/lib/manifest.py rename : js/src/tests/progressbar.py => js/src/tests/lib/progressbar.py rename : js/src/tests/results.py => js/src/tests/lib/results.py rename : js/src/tests/tasks_unix.py => js/src/tests/lib/tasks_unix.py rename : js/src/tests/tasks_win.py => js/src/tests/lib/tasks_win.py rename : js/src/tests/tests.py => js/src/tests/lib/tests.py
This commit is contained in:
parent
3bf78fc2cf
commit
06e209e46c
@ -8,23 +8,23 @@ See the adjacent README.txt for more details.
|
||||
import os, sys
|
||||
from subprocess import list2cmdline, call
|
||||
|
||||
from results import NullTestOutput
|
||||
from tests import TestCase
|
||||
from results import ResultsSink
|
||||
from lib.results import NullTestOutput
|
||||
from lib.tests import TestCase
|
||||
from lib.results import ResultsSink
|
||||
|
||||
if (sys.platform.startswith('linux') or
|
||||
sys.platform.startswith('darwin')
|
||||
):
|
||||
from tasks_unix import run_all_tests
|
||||
from lib.tasks_unix import run_all_tests
|
||||
else:
|
||||
from tasks_win import run_all_tests
|
||||
from lib.tasks_win import run_all_tests
|
||||
|
||||
def run_tests(options, tests, results):
|
||||
"""Run the given tests, sending raw results to the given results accumulator."""
|
||||
pb = None
|
||||
if not options.hide_progress:
|
||||
try:
|
||||
from progressbar import ProgressBar
|
||||
from lib.progressbar import ProgressBar
|
||||
pb = ProgressBar('', len(tests), 16)
|
||||
except ImportError:
|
||||
pass
|
||||
@ -170,7 +170,7 @@ def load_tests(options, js_shell, requested_paths, excluded_paths):
|
||||
skip_list: [iterable<Test>] Tests found but skipped.
|
||||
test_list: [iterable<Test>] Tests found that should be run.
|
||||
"""
|
||||
import manifest
|
||||
import lib.manifest as manifest
|
||||
|
||||
if js_shell is None:
|
||||
xul_tester = manifest.NullXULInfoTester()
|
||||
|
0
js/src/tests/lib/__init__.py
Normal file
0
js/src/tests/lib/__init__.py
Normal file
Loading…
Reference in New Issue
Block a user