From 029022b0f19bff7bdff2e2641242da01522e0ea7 Mon Sep 17 00:00:00 2001 From: Islam AbdelRahman Date: Thu, 28 Apr 2016 15:59:33 -0700 Subject: [PATCH] Fix crash_test Summary: crash_test grep for 'fail' string in the output and if found it consider that we failed. Update the output to use something else Test Plan: make crash_test (still running) Reviewers: yhchiang, sdong, andrewkr Reviewed By: andrewkr Subscribers: andrewkr, dhruba Differential Revision: https://reviews.facebook.net/D57381 --- tools/db_stress.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/db_stress.cc b/tools/db_stress.cc index 2f33a03b7..b01437d1b 100644 --- a/tools/db_stress.cc +++ b/tools/db_stress.cc @@ -643,7 +643,7 @@ class Stats { fprintf(stdout, "%-12s: Got errors %ld times\n", "", errors_); fprintf(stdout, "%-12s: %ld CompactFiles() succeed\n", "", num_compact_files_succeed_); - fprintf(stdout, "%-12s: %ld CompactFiles() failed\n", "", + fprintf(stdout, "%-12s: %ld CompactFiles() did not succeed\n", "", num_compact_files_failed_); if (FLAGS_histogram) {