Adding C++ retry command

Signed-off-by: evanchia <evanchia@amazon.com>
This commit is contained in:
evanchia
2021-07-08 14:02:26 -07:00
parent 08c2796760
commit fd6a5134ec
+8
View File
@@ -126,6 +126,14 @@ namespace AzTestRunner
std::cout << "arg[" << i << "] " << argv[i] << std::endl;
}
// Construct a full retry command
std::cout << "Full command: " << argv[0] << " " << lib << " " << symbol;
for (int i = 1; i < argc; i++)
{
std::cout << " " << argv[i];
}
std::cout << std::endl;
std::cout << "LIB: " << lib << std::endl;
}