From: Gabe Black Date: Mon, 17 Feb 2020 10:15:44 +0000 (-0800) Subject: util: Remove ALPHA from the regress script. X-Git-Tag: v20.0.0.0~478 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=015eeec1f4c039bf7c3c157dfeb228f27a119650;p=gem5.git util: Remove ALPHA from the regress script. The default architecture will now be ARM. Change-Id: Ib2bda3d4ce1fc25f1fec1c9f62eeb9b81032017b Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/25460 Tested-by: kokoro Reviewed-by: Bobby R. Bruce Maintainer: Gabe Black --- diff --git a/util/regress b/util/regress index 1e89bd12b..1f1404c94 100755 --- a/util/regress +++ b/util/regress @@ -38,7 +38,7 @@ add_option = optparser.add_option add_option('-v', '--verbose', action='store_true', default=False, help='echo commands before executing') add_option('--builds', - default='ALPHA,' \ + default='ARM,' \ 'MIPS,' \ 'NULL,' \ 'NULL_MOESI_hammer,' \ @@ -48,7 +48,6 @@ add_option('--builds', 'POWER,' \ 'SPARC,' \ 'X86,X86_MESI_Two_Level,' \ - 'ARM,' \ 'RISCV,' \ 'HSAIL_X86', help="comma-separated build targets to test (default: '%default')")