Update PRS1 test YAML to emit first and last N/2 samples instead of first N, allowing for regression testing of end-of-session edge cases.

This commit is contained in:
sawinglogz 2020-01-05 16:02:04 -05:00
parent 43716793b4
commit 97c7a4f557
2 changed files with 18 additions and 3 deletions

View File

@ -143,11 +143,16 @@ static QString byteList(QByteArray data, int limit=-1)
{
int count = data.size();
if (limit == -1 || limit > count) limit = count;
int first = limit / 2;
int last = limit - first;
QStringList l;
for (int i = 0; i < limit; i++) {
for (int i = 0; i < first; i++) {
l.push_back(QString( "%1" ).arg((int) data[i] & 0xFF, 2, 16, QChar('0') ).toUpper());
}
if (limit < count) l.push_back("...");
for (int i = count - last; i < count; i++) {
l.push_back(QString( "%1" ).arg((int) data[i] & 0xFF, 2, 16, QChar('0') ).toUpper());
}
QString s = l.join(" ");
return s;
}

View File

@ -144,11 +144,16 @@ static QString eventChannel(ChannelID i)
static QString intList(EventStoreType* data, int count, int limit=-1)
{
if (limit == -1 || limit > count) limit = count;
int first = limit / 2;
int last = limit - first;
QStringList l;
for (int i = 0; i < limit; i++) {
for (int i = 0; i < first; i++) {
l.push_back(QString::number(data[i]));
}
if (limit < count) l.push_back("...");
for (int i = count - last; i < count; i++) {
l.push_back(QString::number(data[i]));
}
QString s = "[ " + l.join(",") + " ]";
return s;
}
@ -156,11 +161,16 @@ static QString intList(EventStoreType* data, int count, int limit=-1)
static QString intList(quint32* data, int count, int limit=-1)
{
if (limit == -1 || limit > count) limit = count;
int first = limit / 2;
int last = limit - first;
QStringList l;
for (int i = 0; i < limit; i++) {
for (int i = 0; i < first; i++) {
l.push_back(QString::number(data[i] / 1000));
}
if (limit < count) l.push_back("...");
for (int i = count - last; i < count; i++) {
l.push_back(QString::number(data[i] / 1000));
}
QString s = "[ " + l.join(",") + " ]";
return s;
}