aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/testing_commands.py
diff options
context:
space:
mode:
authorbors-servo <infra@servo.org>2023-05-19 13:09:29 +0200
committerGitHub <noreply@github.com>2023-05-19 13:09:29 +0200
commit71c5bb02b41b8d98b1612563558c2c14b3e20b1a (patch)
tree3896fe2ce7741ae30e67dbe1f5c84acb0272c087 /python/servo/testing_commands.py
parent42332e588849aa5451f81e976dea0d1c19ea7a1b (diff)
parent5be14ecc3cc92309637604b48bdcf249b110ac16 (diff)
downloadservo-71c5bb02b41b8d98b1612563558c2c14b3e20b1a.tar.gz
servo-71c5bb02b41b8d98b1612563558c2c14b3e20b1a.zip
Auto merge of #29754 - mrobinson:organize-python-by-platform, r=mukilan
Start organizing platform-specific Python code This starts to split platform-specific Python code into its own module, which should help to tidy up our mach commands and make things more reusable. This is step one toward fixing #25335. <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes do not require tests because they just change mach scripts. <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r--python/servo/testing_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py
index 01c5882ca2c..4b518f48e98 100644
--- a/python/servo/testing_commands.py
+++ b/python/servo/testing_commands.py
@@ -40,7 +40,7 @@ from servo.command_base import (
call, check_call, check_output,
)
from servo_tidy_tests import test_tidy
-from servo.util import host_triple
+from servo.platform import host_triple
SCRIPT_PATH = os.path.split(__file__)[0]
PROJECT_TOPLEVEL_PATH = os.path.abspath(os.path.join(SCRIPT_PATH, "..", ".."))