mirror of
https://github.com/joyieldInc/predixy.git
synced 2026-02-05 01:42:24 +08:00
15 lines
260 B
C++
15 lines
260 B
C++
/*
|
|
* Minimal test for LogUnit::vformat negative vsnprintf handling.
|
|
*/
|
|
|
|
#include "../src/Logger.h"
|
|
|
|
int main() {
|
|
LogUnit unit;
|
|
unit.format(LogLevel::Info, __FILE__, __LINE__, "%");
|
|
if (unit.length() < 0) {
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|