Brendan McGrath : vbscript: Add todo test for 'rem' as 'dot' identifier.

Alexandre Julliard julliard at winehq.org
Thu Feb 28 16:09:43 CST 2019


Module: wine
Branch: master
Commit: dac7441b4e83a2ca3d0ab4a1f41903a9e7c8de20
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=dac7441b4e83a2ca3d0ab4a1f41903a9e7c8de20

Author: Brendan McGrath <brendan at redmandi.com>
Date:   Thu Feb 28 13:27:18 2019 +1100

vbscript: Add todo test for 'rem' as 'dot' identifier.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46318
Signed-off-by: Brendan McGrath <brendan at redmandi.com>
Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 103082f..49066ce 100644
--- a/dlls/vbscript/tests/run.c
+++ b/dlls/vbscript/tests/run.c
@@ -2334,6 +2334,10 @@ static void run_tests(void)
     parse_script_a("Option Explicit\nset test.setobj = testObj");
     CHECK_CALLED(global_setobj_i);
 
+    hres = parse_script_ar("dim x\nx = testObj.rem");
+    todo_wine
+    ok(hres == S_OK, "use of 'rem' as dot identifier failed: %x08\n", hres);
+
     SET_EXPECT(testobj_propget_d);
     SET_EXPECT(testobj_propget_i);
     parse_script_a("dim x\nx = testObj.propget");




More information about the wine-cvs mailing list