diff --git a/BootRoot/Yard.pm b/BootRoot/Yard.pm index bafb19f..bbef9fa 100644 --- a/BootRoot/Yard.pm +++ b/BootRoot/Yard.pm @@ -1599,6 +1599,8 @@ sub start_logging_output { ##### and STDERR. sub sys { my $error; + + ##info(1,"@_\n"); # This could be verbosity 3, i.e. 2. # when using sys on yard_chrooted_tests my $dont = pop @_; @@ -2755,7 +2757,7 @@ sub check_termcap { # We assume a terminfo file is not being used .. hum if (-d "$mount_point/etc/terminfo") { - # There should at least be a linux entry, and infocmp needs to exist.x + # There should at least be a linux entry, and infocmp needs to exist. my $infocmp = "infocmp -A $mount_point/etc/terminfo -C linux|"; open(TERMCAP, "$infocmp") or diff --git a/BootRoot/YardBox.pm b/BootRoot/YardBox.pm index 3e825c2..ca09f8e 100644 --- a/BootRoot/YardBox.pm +++ b/BootRoot/YardBox.pm @@ -724,11 +724,12 @@ sub test { # Need to know whether genext2fs is being used my $fs_type = (split(/\s/,$main::makefs))[0]; - if ( $fs_type ne "genext2fs" ) { - $tests{30}{test_fstab} = 0; - $tests{31}{test_inittab} = 0; - $tests{32}{test_scripts} = 0; - } + # unecessary logic +## if ( $fs_type ne "genext2fs" ) { +## $tests{30}{test_fstab} = 0; +## $tests{31}{test_inittab} = 0; +## $tests{32}{test_scripts} = 0; +## } my $error = which_tests(\%tests); return if $error && $error eq "ERROR";