Fix "bugprone-use-after-move" clang-tidy issues

Cherry pick from commit 87e94a7bd7cdb2fef51ac94eac70c1f507128f1b what
didn't go into https://r.android.com/2589466.

Bug: 264654008
Test: atest ArtGtestsTargetChroot
Merged-In: I450b73c1faccb5a06f8c99f8d9583ec58b39adba
Change-Id: Ie10f002d16b38b0aaaac21c5fdfd3aac97edb793
diff --git a/libarttools/tools/cmdline_builder_test.cc b/libarttools/tools/cmdline_builder_test.cc
index 5551860..59f41e1 100644
--- a/libarttools/tools/cmdline_builder_test.cc
+++ b/libarttools/tools/cmdline_builder_test.cc
@@ -127,6 +127,7 @@
 
   args_.Concat(std::move(other));
   EXPECT_THAT(args_.Get(), ElementsAre("--flag1", "--flag2", "--flag3", "--flag4"));
+  // NOLINTNEXTLINE - checking all args have been moved from other to args_
   EXPECT_THAT(other.Get(), IsEmpty());
 }