Removed traces of the regedit unit tests.

This commit is contained in:
Andriy Palamarchuk 2002-06-20 22:46:04 +00:00 committed by Alexandre Julliard
parent 533905e2ab
commit a47710717b
1 changed files with 0 additions and 16 deletions

View File

@ -22,8 +22,6 @@ use strict;
use diagnostics;
test_diff();
#TODO!!!
#test_regedit();
#removes all test output files
sub clear_output
@ -48,17 +46,3 @@ sub test_diff
}
clear_output();
}
#tests compatibility with regedit
sub test_regedit
{
my $orig = './tests/orig.reg';
my $regedit = 'regapi';
my $delete_cmd;
my $insert_cmd = "$regedit setValue < $orig";
my $export_cmd;
qx/$insert_cmd/;
print "Insert: $insert_cmd\n";
clear_output();
}