From 8ffecdd966adb96f00fabb6d7ec99c33aef2242e Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Mon, 31 Oct 2022 12:00:40 -0700 Subject: [PATCH] stdlib,configs,tests: Rename config to arm-ubuntu-run.py The "config/example/gem5_library/arm-ubuntu-boot-exit.py" script is renamed to "config/example/gem5_library/arm-ubuntu-run.py". This makes it more consistent with similar scripts in the "config/example/gem5_library" directory: "x86-ubuntu-run.py" and "riscv-ubuntu-run.py". Change-Id: I9d96fd68e122f2841573b1717b0969cd44972771 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/65132 Maintainer: Bobby Bruce Reviewed-by: Jason Lowe-Power Tested-by: kokoro Maintainer: Jason Lowe-Power --- .../{arm-ubuntu-boot-exit.py => arm-ubuntu-run.py} | 2 +- .../gem5_library_example_tests/test_gem5_library_examples.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename configs/example/gem5_library/{arm-ubuntu-boot-exit.py => arm-ubuntu-run.py} (98%) diff --git a/configs/example/gem5_library/arm-ubuntu-boot-exit.py b/configs/example/gem5_library/arm-ubuntu-run.py similarity index 98% rename from configs/example/gem5_library/arm-ubuntu-boot-exit.py rename to configs/example/gem5_library/arm-ubuntu-run.py index 70608eca9d..7f976f06db 100644 --- a/configs/example/gem5_library/arm-ubuntu-boot-exit.py +++ b/configs/example/gem5_library/arm-ubuntu-run.py @@ -35,7 +35,7 @@ Usage ``` scons build/ARM/gem5.opt -j -./build/ARM/gem5.opt configs/example/gem5_library/arm-ubuntu-boot-exit.py +./build/ARM/gem5.opt configs/example/gem5_library/arm-ubuntu-run.py ``` """ diff --git a/tests/gem5/gem5_library_example_tests/test_gem5_library_examples.py b/tests/gem5/gem5_library_example_tests/test_gem5_library_examples.py index 13aa877ba0..28a10b588b 100644 --- a/tests/gem5/gem5_library_example_tests/test_gem5_library_examples.py +++ b/tests/gem5/gem5_library_example_tests/test_gem5_library_examples.py @@ -275,7 +275,7 @@ gem5_verify_config( ) gem5_verify_config( - name="test-gem5-library-example-arm-ubuntu-boot-test", + name="test-gem5-library-example-arm-ubuntu-run-test", fixtures=(), verifiers=(), config=joinpath( @@ -283,7 +283,7 @@ gem5_verify_config( "configs", "example", "gem5_library", - "arm-ubuntu-boot-exit.py", + "arm-ubuntu-run.py", ), config_args=[], valid_isas=(constants.all_compiled_tag,),