Skip to content

Commit

Permalink
Disabling flaky test.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasnoble committed Mar 16, 2016
1 parent 2b6feb8 commit 1faa036
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/core/census/mlog_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ static void multiple_writers_single_reader(int circular_log) {

static void setup_test(int circular_log) {
census_log_initialize(LOG_SIZE_IN_MB, circular_log);
GPR_ASSERT(census_log_remaining_space() == LOG_SIZE_IN_BYTES);
// GPR_ASSERT(census_log_remaining_space() == LOG_SIZE_IN_BYTES);
}

// Attempts to create a record of invalid size (size >
Expand All @@ -352,8 +352,8 @@ void test_invalid_record_size(void) {
// check can fail if the thread is context switched to a new CPU during the
// start_write execution (multiple blocks get allocated), but this has not
// been observed in practice.
GPR_ASSERT(LOG_SIZE_IN_BYTES - CENSUS_LOG_MAX_RECORD_SIZE ==
census_log_remaining_space());
// GPR_ASSERT(LOG_SIZE_IN_BYTES - CENSUS_LOG_MAX_RECORD_SIZE ==
// census_log_remaining_space());
census_log_shutdown();
}

Expand Down

0 comments on commit 1faa036

Please sign in to comment.