From 90b2356015ab42b00d19eadc1775eb6f82ad5f30 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 24 Mar 2019 00:24:05 +0200 Subject: [PATCH] system_error_test: Increase tested messages range (Nikita Kniazev) --- test/system_category_test.cpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/test/system_category_test.cpp b/test/system_category_test.cpp index 19c9f57..5a77454 100644 --- a/test/system_category_test.cpp +++ b/test/system_category_test.cpp @@ -110,14 +110,7 @@ int main() // message - for( int i = -2; i < 1024; ++i ) - { - test_message( cat, i ); - } - - test_message( cat, 5810 ); - - for( int i = 10000; i < 11032; ++i ) + for( int i = -2; i < 16000; ++i ) { test_message( cat, i ); }