glbench: COIL: Replace blacklist with disabled_tests

Better word for what this actually is.

BUG=none
TEST=CQ

Change-Id: I72d44e5c613b61961d0ca2702a6b62f8528e748d
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/glbench/+/2604788
Tested-by: Nicolas Boichat <drinkcat@chromium.org>
Auto-Submit: Nicolas Boichat <drinkcat@chromium.org>
Commit-Queue: Ilja H. Friedel <ihf@chromium.org>
Reviewed-by: Ilja H. Friedel <ihf@chromium.org>
diff --git a/src/main.cc b/src/main.cc
index e011ab8..1793e57 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -26,7 +26,7 @@
 DEFINE_string(tests,
               "",
               "Colon-separated list of tests to run; all tests if omitted.");
-DEFINE_string(blacklist, "", "colon-separated list of tests to disable");
+DEFINE_string(disabled_tests, "", "colon-separated list of tests to disable");
 DEFINE_bool(
     hasty,
     false,
@@ -140,7 +140,7 @@
     g_initial_temperature = GetMachineTemperature();
 
   vector<string> enabled_tests = SplitString(FLAGS_tests, ":", true);
-  vector<string> disabled_tests = SplitString(FLAGS_blacklist, ":", true);
+  vector<string> disabled_tests = SplitString(FLAGS_disabled_tests, ":", true);
 
   glbench::TestBase* tests[] = {
       // Please add new tests at the end of this list as tests are known to