mirror of
https://github.com/reactos/reactos.git
synced 2025-04-30 02:58:48 +00:00
[WINESYNC] reg/tests: Add registry view syntax tests for the 'import' operation.
Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id 49cde0995827b24aa9c1ef1b6a0372797f4166e0 by Hugh McMaster <hugh.mcmaster@outlook.com>
This commit is contained in:
parent
9f70f13ee7
commit
4e25c2d09b
2 changed files with 10 additions and 1 deletions
|
@ -130,6 +130,15 @@ static void test_command_syntax(void)
|
||||||
|
|
||||||
run_reg_exe("reg import a.reg b.reg", &r);
|
run_reg_exe("reg import a.reg b.reg", &r);
|
||||||
ok(r == REG_EXIT_FAILURE, "got exit code %d, expected 1\n", r);
|
ok(r == REG_EXIT_FAILURE, "got exit code %d, expected 1\n", r);
|
||||||
|
|
||||||
|
run_reg_exe("reg import foo.reg /reg:32 /reg:32", &r);
|
||||||
|
ok(r == REG_EXIT_FAILURE, "got exit code %d, expected 1\n", r);
|
||||||
|
|
||||||
|
run_reg_exe("reg import foo.reg /reg:32 /reg:64", &r);
|
||||||
|
ok(r == REG_EXIT_FAILURE, "got exit code %d, expected 1\n", r);
|
||||||
|
|
||||||
|
run_reg_exe("reg import foo.reg /reg:64 /reg:64", &r);
|
||||||
|
ok(r == REG_EXIT_FAILURE, "got exit code %d, expected 1\n", r);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void test_import(void)
|
static void test_import(void)
|
||||||
|
|
|
@ -4,4 +4,4 @@ directories:
|
||||||
files:
|
files:
|
||||||
programs/reg/resource.h: base/applications/cmdutils/reg/resource.h
|
programs/reg/resource.h: base/applications/cmdutils/reg/resource.h
|
||||||
tags:
|
tags:
|
||||||
wine: 0c71a9879d894e4b82de2909c9c44e36c0bbb35e
|
wine: 49cde0995827b24aa9c1ef1b6a0372797f4166e0
|
||||||
|
|
Loading…
Reference in a new issue