Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
6625b63b
Commit
6625b63b
authored
Aug 03, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of the no longer used regedit test.
parent
73482144
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
211 deletions
+0
-211
configure
configure
+0
-5
configure.ac
configure.ac
+0
-1
Makefile.in
programs/regedit/Makefile.in
+0
-5
.cvsignore
programs/regedit/tests/.cvsignore
+0
-1
orig.reg
programs/regedit/tests/orig.reg
+0
-0
regedit.pl
programs/regedit/tests/regedit.pl
+0
-199
No files found.
configure
View file @
6625b63b
...
...
@@ -18922,8 +18922,6 @@ esac
ac_config_commands
=
"
$ac_config_commands
include/wine"
ac_config_commands
=
"
$ac_config_commands
programs/regedit/tests"
MAKE_RULES
=
Make.rules
...
...
@@ -19747,7 +19745,6 @@ do
"dlls/user/resources" ) CONFIG_COMMANDS="
$CONFIG_COMMANDS
dlls/user/resources" ;;
"dlls/wineps/data" ) CONFIG_COMMANDS="
$CONFIG_COMMANDS
dlls/wineps/data" ;;
"include/wine" ) CONFIG_COMMANDS="
$CONFIG_COMMANDS
include/wine" ;;
"programs/regedit/tests" ) CONFIG_COMMANDS="
$CONFIG_COMMANDS
programs/regedit/tests" ;;
"include/config.h" ) CONFIG_HEADERS="
$CONFIG_HEADERS
include/config.h" ;;
*) { { echo "
$as_me
:
$LINENO
: error: invalid argument:
$ac_config_target
" >&5
echo "
$as_me
: error: invalid argument:
$ac_config_target
" >&2;}
...
...
@@ -20548,8 +20545,6 @@ echo "$as_me: creating dlls/user/resources" >&6;} && mkdir "dlls/user/resources"
echo "
$as_me
: creating dlls/wineps/data" >&6;} && mkdir "dlls/wineps/data") ;;
include/wine ) test -d "include/wine" || ({ echo "
$as_me
:
$LINENO
: creating include/wine" >&5
echo "
$as_me
: creating include/wine" >&6;} && mkdir "include/wine") ;;
programs/regedit/tests ) test -d "programs/regedit/tests" || ({ echo "
$as_me
:
$LINENO
: creating programs/regedit/tests" >&5
echo "
$as_me
: creating programs/regedit/tests" >&6;} && mkdir "programs/regedit/tests") ;;
esac
done
_ACEOF
...
...
configure.ac
View file @
6625b63b
...
...
@@ -1525,7 +1525,6 @@ WINE_CONFIG_EXTRA_DIR(dlls/kernel/messages)
WINE_CONFIG_EXTRA_DIR(dlls/user/resources)
WINE_CONFIG_EXTRA_DIR(dlls/wineps/data)
WINE_CONFIG_EXTRA_DIR(include/wine)
WINE_CONFIG_EXTRA_DIR(programs/regedit/tests)
MAKE_RULES=Make.rules
AC_SUBST_FILE(MAKE_RULES)
...
...
programs/regedit/Makefile.in
View file @
6625b63b
...
...
@@ -31,11 +31,6 @@ RC_BINARIES = \
regedit.ico
\
string.ico
PLTESTS
=
\
tests/regedit.pl
EXTRASUBDIRS
=
tests
@MAKE_PROG_RULES@
### Dependencies:
programs/regedit/tests/.cvsignore
deleted
100644 → 0
View file @
73482144
regedit.ok
programs/regedit/tests/orig.reg
deleted
100644 → 0
View file @
73482144
This diff is collapsed.
Click to expand it.
programs/regedit/tests/regedit.pl
deleted
100644 → 0
View file @
73482144
#!/usr/bin/perl -w
#
# This script tests regedit functionality
#
# Copyright 2002 Andriy Palamarchuk
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
use
strict
;
use
diagnostics
;
use
winetest
;
$
main::
orig_reg
=
'./tests/orig.reg'
;
test_regedit
();
# Imitation of test framework "ok".
# Uncomment when running on Windows without testing framework
# sub ok($;$)
# {
# my ($condition, $message) = @_;
# if (!$condition)
# {
# die $message;
# }
# }
# Checks if the files are equal regardless of the end-of-line encoding.
# Returns 0 if the files are different, otherwise returns 1
# params - list of file names
sub
files_are_equal
{
my
@file_names
=
@_
;
my
@files
=
();
die
"At least 2 file names expected"
unless
(
$#file_names
);
#compare file contents
foreach
my
$file_name
(
@file_names
)
{
my
$file
;
open
(
$file
,
"<$file_name"
)
||
die
"Error! can't open file $file_name"
;
push
(
@files
,
$file
);
}
my
$first_file
=
shift
(
@files
);
my
$line1
;
my
$line2
;
while
(
$line1
=
<
$first_file
>
)
{
$line1
=~
s/\r//
;
chomp
(
$line1
);
foreach
my
$file
(
@files
)
{
$line2
=
<
$file
>
;
$line2
=~
s/\r//
;
chomp
(
$line2
);
return
0
if
$line1
ne
$line2
;
}
}
return
1
;
}
#removes all test output files
sub
clear_output
{
unlink
"${main::orig_reg}.exported"
;
unlink
"${main::orig_reg}.exported2"
;
}
#tests compatibility with regedit
sub
test_regedit
{
my
$error_no_file_name
=
"regedit: No file name is specified"
;
my
$error_undefined_switch
=
"regedit: Undefined switch /"
;
my
$error_no_registry_key
=
"regedit: No registry key is specified"
;
my
$error_file_not_found
=
'regedit: Can\'t open file "dummy_file_name"'
;
my
$error_bad_reg_class_name
=
'regedit: Incorrect registry class specification in'
;
my
$error_dont_delete_class
=
'regedit: Can\'t delete registry class'
;
my
$test_reg_key
=
'HKEY_CURRENT_USER\Test Regedit'
;
my
$s
;
my
$regedit
=
-
e
"./regedit.exe"
?
".\\regedit.exe"
:
"./regedit"
;
#no parameters
my
$command
=
"$regedit 2>&1"
;
$s
=
qx/$command/
;
ok
(
$?
,
"regedit.exe return code check"
);
ok
(
$s
=~
/$error_no_file_name/
,
'Should raise an error on missed file name'
);
#ignored parameters
$command
=
"$regedit /S /V /R:1.reg /L:ss_ss.reg 2>&1"
;
$s
=
qx/$command/
;
ok
(
$?
,
"regedit.exe return code check"
);
ok
(
$s
=~
/$error_no_file_name/
,
'Should raise an error on missed file name'
);
#incorrect form for /L, /R parameters
for
my
$switch
(
'L'
,
'R'
)
{
$command
=
"$regedit /$switch 2>&1"
;
$s
=
qx/$command/
;
ok
(
$?
,
"regedit.exe return code check"
);
ok
(
$s
=~
/$error_undefined_switch/
,
"Incorrect switch format check"
);
#with ':'
$command
=
"$regedit /$switch: 2>&1"
;
$s
=
qx/$command/
;
ok
(
$?
,
"regedit.exe return code check"
);
ok
(
$s
=~
/$error_no_file_name/
,
"Incorrect switch format check"
);
}
#file does not exist
$command
=
"$regedit dummy_file_name 2>&1"
;
$s
=
qx/$command/
;
ok
(
$?
,
"regedit.exe return code check"
);
ok
(
$s
=~
/$error_file_not_found/
,
'Incorrect processing of not-existing file'
);
#incorrect registry class is specified
$command
=
"$regedit /e ${main::orig_reg}.exported \"BAD_CLASS_HKEY\" 2>&1"
;
$s
=
qx/$command/
;
ok
(
$?
,
"regedit.exe return code check"
);
ok
(
$s
=~
/$error_bad_reg_class_name/
,
'Incorrect processing of not-existing file'
);
#import registry file, export registry file, compare the files
$command
=
"$regedit ${main::orig_reg} 2>&1"
;
$s
=
qx/$command/
;
ok
(
!
$?
,
"regedit.exe return code check"
);
$command
=
"$regedit /e ${main::orig_reg}.exported \"$test_reg_key\" 2>&1"
;
$s
=
qx/$command/
;
ok
(
!
$?
,
"regedit.exe return code check"
);
ok
(
files_are_equal
(
"${main::orig_reg}.exported"
,
$
main::
orig_reg
),
"Original and generated registry files "
.
"(${main::orig_reg}.exported and ${main::orig_reg}) "
.
"are different"
);
clear_output
();
#export bare registry class (2 formats of command line parameter)
#XXX works fine under wine, but commented out because does not handle all key types
#existing on Windows and Windows registry is *very* big
# $command = "$regedit /e ${main::orig_reg}.exported HKEY_CURRENT_USER 2>&1";
# $s = qx/$command/;
# print("DEBUG\t result: $s, return code - $?\n");
# ok(!$?, "regedit.exe return code check");
# $command = "$regedit /e ${main::orig_reg}.exported2 HKEY_CURRENT_USER 2>&1";
# qx/$command/;
# ok(!$?, "regedit.exe return code check");
# ok(files_are_equal("${main::orig_reg}.exported", "${main::orig_reg}.exported2"),
# "Original and generated registry files " .
# "(${main::orig_reg}.exported and ${main::orig_reg}.exported2) " .
# "are different");
##test removal
#incorrect format
$command
=
"$regedit /d 2>&1"
;
$s
=
qx/$command/
;
ok
(
$?
,
"regedit.exe return code check"
);
ok
(
$s
=~
/$error_no_registry_key/
,
'No registry key name is specified for removal'
);
#try to delete class
$command
=
"$regedit /d HKEY_CURRENT_USER 2>&1"
;
$s
=
qx/$command/
;
ok
(
$?
,
"regedit.exe return code check"
);
ok
(
$s
=~
/$error_dont_delete_class/
,
'Try to remove registry class'
);
#try to delete registry key with incorrect name
$command
=
"$regedit /d BAD_HKEY 2>&1"
;
$s
=
qx/$command/
;
ok
(
$?
,
"regedit.exe return code check"
);
#should not export anything after removal because the key does not exist
clear_output
();
ok
(
!-
e
(
"${main::orig_reg}.exported"
),
"Be sure the file is deleted"
);
$command
=
"$regedit /d \"$test_reg_key\" 2>&1"
;
$s
=
qx/$command/
;
$command
=
"$regedit /e ${main::orig_reg}.exported \"$test_reg_key\" 2>&1"
;
$s
=
qx/$command/
;
ok
(
!-
e
(
"${main::orig_reg}.exported"
),
"File ${main::orig_reg}.exported should not exist"
);
ok
(
$?
,
"regedit.exe return code check"
);
clear_output
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment