tests: Standardized used of the ISA constants tags
[gem5.git] / tests / gem5 / learning_gem5 / part3_test.py
index 9847ab7bc9895599b7528bbadb926d626c174128..e8ca35190d1e106206ce95d90f425398dc60dde3 100644 (file)
@@ -39,8 +39,8 @@ gem5_verify_config(
     config=joinpath(config_path, 'simple_ruby.py'),
     config_args = [],
     protocol = 'MSI',
-    valid_isas=("X86",), # Currently only x86 has the threads test
-    valid_hosts=constants.target_host["X86"], # dynamically linked
+    valid_isas=(constants.x86_tag,), # Currently only x86 has the threads test
+    valid_hosts=constants.target_host[constants.x86_tag], # dynamically linked
 )
 
 gem5_verify_config(
@@ -49,5 +49,5 @@ gem5_verify_config(
     config=joinpath(config_path, 'ruby_test.py'),
     config_args = [],
     protocol = 'MSI',
-    valid_isas=("X86",), # Currently only x86 has the threads test
+    valid_isas=(constants.x86_tag,), # Currently only x86 has the threads test
 )