From: Jacek Caban Subject: Re: [PATCH v2 1/2] vbscript/tests: Test 'Get' keyword used as id Message-Id: <55a2b4a6-a818-d5d4-04b9-846080d5824f@codeweavers.com> Date: Tue, 12 Feb 2019 12:45:16 +0100 In-Reply-To: <20190210004524.21594-1-brendan@redmandi.com> References: <288c0b2d-0ac0-c953-b5d8-34559711b08b@codeweavers.com> <20190210004524.21594-1-brendan@redmandi.com> Hi Brendan, On 2/10/19 1:45 AM, Brendan McGrath wrote: > Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46318 > Signed-off-by: Brendan McGrath > --- > dlls/vbscript/tests/run.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/dlls/vbscript/tests/run.c b/dlls/vbscript/tests/run.c > index 191f5a79a0..bc3e0742df 100644 > --- a/dlls/vbscript/tests/run.c > +++ b/dlls/vbscript/tests/run.c > @@ -2406,6 +2406,10 @@ static void run_tests(void) > CHECK_CALLED(global_success_d); > CHECK_CALLED(global_success_i); > > + hres = parse_script_ar("Set oLocator = CreateObject(\"Wbemscripting.SWbemLocator\")\r" > + "Set oReg = oLocator.ConnectServer(\"\", \"root\\default\", \"\", \"\").Get(\"StdRegProv\")"); > + todo_wine ok(hres == S_OK, "parse_script failed: %08x\n", hres); Please integrate the test into existing lang.vbs. Note that you don't really need to create external objects to test that. You could, for example, try declare a variable called 'get'. Thanks, Jacek