Bobby R. Bruce has uploaded this change for review. ( https://gem5-review.googlesource.com/c/public/gem5/+/53086 )

Change subject: stdlib: Fix CustomResource metadata setting
......................................................................

stdlib: Fix CustomResource metadata setting

The 'metadata' parameter was not being passed to the AbstractResource
superclass.

Change-Id: Id25d82baa2039c992645e6807a46e7c329520bb7
---
M src/python/gem5/resources/resource.py
1 file changed, 13 insertions(+), 1 deletion(-)



diff --git a/src/python/gem5/resources/resource.py b/src/python/gem5/resources/resource.py
index 3203191..0b9b128 100644
--- a/src/python/gem5/resources/resource.py
+++ b/src/python/gem5/resources/resource.py
@@ -78,7 +78,7 @@
         :param local_path: The path of the resource on the host system.
         :param metadata: Add metadata for the custom resource.
         """
-        super().__init__(local_path=local_path)
+        super().__init__(local_path=local_path, metadata=metadata)


 class Resource(AbstractResource):

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/53086
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: Id25d82baa2039c992645e6807a46e7c329520bb7
Gerrit-Change-Number: 53086
Gerrit-PatchSet: 1
Gerrit-Owner: Bobby R. Bruce <bbr...@ucdavis.edu>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list -- gem5-dev@gem5.org
To unsubscribe send an email to gem5-dev-le...@gem5.org
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

Reply via email to