PR testsuite/48675
* testsuite/20_util/hash/chi2_quality.cc (test_document_words): Stub
this part if SAMPLES < 100000.
From-SVN: r172692
+2011-04-19 Hans-Peter Nilsson <hp@axis.com>
+
+ PR testsuite/48675
+ * testsuite/20_util/hash/chi2_quality.cc (test_document_words): Stub
+ this part if SAMPLES < 100000.
+
2011-04-18 Paolo Carlini <paolo.carlini@oracle.com>
* include/std/type_traits (is_nothrow_default_constructible,
void
test_document_words()
{
+ // That file is 187587 single-word lines. To avoid a timeout, just skip
+ // this part, which would take up to 95% of the program runtime (with
+ // SAMPLES == 10000), if we're not supposed to run anywhere that long.
+#if SAMPLES >= 100000
bool test __attribute__((unused)) = true;
const std::string f_name = "thirty_years_among_the_dead_preproc.txt";
std::ifstream in(f_name);
const unsigned long k = words.size() / 20;
double chi2 = chi2_hash(words, k);
VERIFY( chi2 < k*1.1 );
+#endif
}
int