Skip to content

Commit 603a03b

Browse files
committed
test: Add API hinting enpoints
Adding new resources to the http api to enable testing of the hinting functionality. Signed-off-by: Jack Thomson <jackabt@amazon.com>
1 parent 7662108 commit 603a03b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/framework/http_api.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,9 @@ def __init__(self, api_usocket_full_name, *, on_error=None):
127127
self.mmds_config = Resource(self, "/mmds/config")
128128
self.balloon = Resource(self, "/balloon")
129129
self.balloon_stats = Resource(self, "/balloon/statistics")
130+
self.balloon_hinting_start = Resource(self, "/balloon/hinting/start")
131+
self.balloon_hinting_status = Resource(self, "/balloon/hinting/status")
132+
self.balloon_hinting_stop = Resource(self, "/balloon/hinting/stop")
130133
self.vsock = Resource(self, "/vsock")
131134
self.snapshot_create = Resource(self, "/snapshot/create")
132135
self.snapshot_load = Resource(self, "/snapshot/load")

0 commit comments

Comments
 (0)