[notcurses-tester] dump geometry after init #2228

pull/2236/head
nick black 3 years ago
parent 284bbd4723
commit 73b3a43fc7
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -134,14 +134,14 @@ auto lang_and_term() -> void {
std::cerr << "TERM wasn't defined, exiting with success" << std::endl;
exit(EXIT_SUCCESS);
}
std::cout << "Running with TERM=" << term << " (" << dimx << 'x'
<< dimy << ")" << std::endl;
std::cout << "Running with TERM=" << term << std::endl;
auto nc = testing_notcurses();
if(!nc){
exit(EXIT_FAILURE);
}
int dimy, dimx;
notcurses_stddim_yx(nc, &dimy, &dimx);
std::cout << "Detected geometry: " << dimx << 'x' << dimy << std::endl;
notcurses_stop(nc);
if(dimx < 50 || dimy < 24){ // minimum assumed geometry
std::cerr << "Terminal was too small for tests (minimum 50x24)" << std::endl;

Loading…
Cancel
Save