Remove excessive test modes

Change-Id: I38161ff426a4f529f9073da2055adbfb45193f20
This commit is contained in:
David Ostrovsky
2017-08-29 08:23:43 +00:00
parent 4edaf0eda1
commit ce8ffa7e82
2 changed files with 1 additions and 8 deletions

View File

@@ -224,7 +224,7 @@ Primary storage NoteDb:
Primary storage NoteDb and ReviewDb disabled:
----
bazel test --test_env=GERRIT_NOTEDB=DISABLE_CHANGE_REVIEW_DB //...
bazel test --test_env=GERRIT_NOTEDB=ON //...
----
To run only tests that do not use SSH:

View File

@@ -34,13 +34,6 @@ public enum NoteDbMode {
/** Changes are created with their primary storage as NoteDb. */
PRIMARY(NotesMigrationState.READ_WRITE_WITH_SEQUENCE_NOTE_DB_PRIMARY),
/** All change tables are entirely disabled. */
DISABLE_CHANGE_REVIEW_DB(NotesMigrationState.NOTE_DB),
/** All change tables are entirely disabled, and code/meta ref updates are fused. */
FUSED(NotesMigrationState.NOTE_DB),
// TODO(dborowitz): Change CI to use this, then remove FUSED and DISABLE_CHANGE_REVIEW_DB.
/** All change tables are entirely disabled, and code/meta ref updates are fused. */
ON(NotesMigrationState.NOTE_DB),