Skip to content

Commit fbdb72a

Browse files
committed
change file naem
Signed-off-by: dw035535 <[email protected]>
1 parent 43fe465 commit fbdb72a

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

windows/guest_customization/win_gosc_verify.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
include_tasks: check_runonce_command.yml
2828
- name: "Check timezone configured"
2929
include_tasks: check_timezone.yml
30-
- name: "Get Windows shell process status"
31-
include_tasks: ../utils/win_check_black_screen.yml
32-
- name: "Check black screen"
30+
- name: "Get 'explorer.exe' process status"
31+
include_tasks: ../utils/win_get_explorer_process.yml
32+
- name: "Check 'explorer.exe' process status"
3333
ansible.builtin.assert:
3434
that:
3535
- win_explorer_running
3636
fail_msg: >
37-
Failed to get process 'explorer.exe' status in guest OS after GOSC,
38-
black screen issue may happen, please check the screenshot or log files in the current test case log folder.
37+
Failed to get process 'explorer.exe' in guest OS after GOSC, black screen issue may happen,
38+
please check the screenshot or log files in the current test case log folder.
3939
4040
- name: "Take a screenshot after GOSC"
4141
include_tasks: ../../common/vm_take_screenshot.yml

windows/utils/win_check_black_screen.yml renamed to windows/utils/win_get_explorer_process.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Copyright 2025 VMware, Inc.
22
# SPDX-License-Identifier: BSD-2-Clause
33
---
4-
# Check if there is black screen issue occurs in Windows guest OS
4+
# Description:
5+
# Get process 'explorer.exe' in Windows guest OS to check
6+
# if there is black screen issue occurs.
7+
# Return:
8+
# win_explorer_running: true or false. Whether the process
9+
# 'explorer.exe' is running in guest OS.
510
#
611
- name: "Initialize the status of process 'explorer.exe'"
712
ansible.builtin.set_fact:

0 commit comments

Comments
 (0)