2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-31 10:06:39 +00:00

Debug command output12

This commit is contained in:
Mark Gurevich 2022-07-13 15:15:54 -04:00
parent b2e74483c7
commit 313244045a
2 changed files with 7 additions and 3 deletions

View File

@ -477,7 +477,7 @@ sub run_fast_regression_test{
@output = runcmd("cat $conf_file");
print Dumper \@output;
$cmd = "sudo /opt/xcat/bin/xcattest -s \"ci_test\" -l | grep restorexcatdb_p";
$cmd = "sudo /opt/xcat/bin/xcattest -s \"ci_test\" -l | grep chdef_t";
my @caseslist = runcmd("$cmd");
if($::RUNCMD_RC){
print RED "[run_fast_regression_test] $cmd ....[Failed]\n";

View File

@ -1594,7 +1594,7 @@ sub setup_env_by_configure_file {
if (exists $$config_ref{table}) {
foreach my $type (keys %{ $$config_ref{table} }) {
foreach my $name (keys %{ $$config_ref{table}{$type} }) {
$cmd = "chtab $$config_ref{table}{$type}{$name}{__KEY__}=$name";
$cmd = "sudo chtab $$config_ref{table}{$type}{$name}{__KEY__}=$name";
foreach my $attr (keys %{ $$config_ref{table}{$type}{$name} }) {
if ($attr ne '__KEY__') {
$cmd = $cmd . " $type.$attr=$$config_ref{table}{$type}{$name}{$attr}";
@ -1605,7 +1605,11 @@ sub setup_env_by_configure_file {
if ($::RUNCMD_RC != 0) {
$$error_ref = "Failed3 to run $cmd OUTPUT: @output";
print Dumper \@output;
my @output2 = &runcmd("lsdef -t site clustersite -i domain -c");
print "MG Running verification lsdef";
my @output2 = &runcmd("sudo lsdef -t site clustersite -i domain -c");
print "MG_LSDEF:\n " . Dumper \@output2;
print "MG Running verification tabdump";
my @output2 = &runcmd("sudo tabdump site");
print "MG_LSDEF:\n " . Dumper \@output2;
return 1;
}