Commit 066b5ac9 authored by Michael Achenbach's avatar Michael Achenbach Committed by Commit Bot

[test] Switch order of default flags

TBR=tebbi@chromium.org

Bug: v8:10577
Change-Id: I3367c31afb9f38f9151d3c5787a7838da4db327a
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2418717Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#70012}
parent 247e9ccc
......@@ -236,9 +236,9 @@ class TestCase(object):
"""Gets command parameters and combines them in the following order:
- files [empty by default]
- random seed
- mode flags (based on chosen mode)
- extra flags (from command line)
- user flags (variant/fuzzer flags)
- mode flags (based on chosen mode)
- source flags (from source code) [empty by default]
- test-suite flags
- statusfile flags
......@@ -249,9 +249,9 @@ class TestCase(object):
return (
self._get_files_params() +
self._get_random_seed_flags() +
self._get_mode_flags() +
self._get_extra_flags() +
self._get_variant_flags() +
self._get_mode_flags() +
self._get_source_flags() +
self._get_suite_flags() +
self._get_statusfile_flags()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment