You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
383 B
16 lines
383 B
// This file is under GNU General Public License 3.0
|
|
// see LICENSE.txt
|
|
|
|
#include "utils.hh"
|
|
// Single threaded test of pEpLog() function.
|
|
// check for uniformity of time
|
|
|
|
int main()
|
|
{
|
|
pEpLog("Test Starting... observe uniformity of timestamp.");
|
|
int nr_log_lines = 1000000;
|
|
for (int i; i < nr_log_lines; i++) {
|
|
pEpLog("log line nr: " << i);
|
|
}
|
|
return 0;
|
|
}
|
|
|