2022-12-03 04:20:27 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
2022-12-05 17:58:23 +00:00
|
|
|
// SCSI Target Emulator PiSCSI for Raspberry Pi
|
2022-12-03 04:20:27 +00:00
|
|
|
// Loopback tester utility
|
|
|
|
//
|
|
|
|
// Copyright (C) 2022 akuker
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
class ScsiLoop_Cout
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void StartTest(const string &test_name);
|
|
|
|
static void PrintUpdate();
|
|
|
|
static void FinishTest(const string &test_name, int failures);
|
2023-10-15 06:38:15 +00:00
|
|
|
static void PrintErrors(const vector<string> &test_errors);
|
2022-12-03 04:20:27 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
const static inline string RESET = "\033[0m";
|
|
|
|
const static inline string BLACK = "\033[30m"; /* Black */
|
|
|
|
const static inline string RED = "\033[31m"; /* Red */
|
|
|
|
const static inline string GREEN = "\033[32m"; /* Green */
|
|
|
|
const static inline string YELLOW = "\033[33m"; /* Yellow */
|
|
|
|
const static inline string BLUE = "\033[34m"; /* Blue */
|
|
|
|
const static inline string MAGENTA = "\033[35m"; /* Magenta */
|
|
|
|
const static inline string CYAN = "\033[36m"; /* Cyan */
|
|
|
|
const static inline string WHITE = "\033[37m"; /* White */
|
2023-10-15 06:38:15 +00:00
|
|
|
};
|