[llvm] [LIT] NFC. Add missing punctuation on a LIT driver message (PR #67941)

Uday Bondhugula via llvm-commits llvm-commits at lists.llvm.org
Sun Oct 1 19:48:47 PDT 2023


https://github.com/bondhugula created https://github.com/llvm/llvm-project/pull/67941

Add missing punctuation on a LIT driver message.


>From 3693ca8d858bf53c16467f8042d484b6ebac0fa9 Mon Sep 17 00:00:00 2001
From: Uday Bondhugula <uday at polymagelabs.com>
Date: Mon, 2 Oct 2023 08:16:22 +0530
Subject: [PATCH] [LIT] NFC. Add missing punctuation on a LIT driver message

Add missing punctuation on a LIT driver message.
---
 llvm/utils/lit/lit/main.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llvm/utils/lit/lit/main.py b/llvm/utils/lit/lit/main.py
index 3cb47c605ad5ac7..b2a578e0ae6d9ae 100755
--- a/llvm/utils/lit/lit/main.py
+++ b/llvm/utils/lit/lit/main.py
@@ -73,7 +73,7 @@ def main(builtin_params={}):
                     "The test suite configuration requested an individual"
                     " test timeout of {0} seconds but a timeout of {1} seconds was"
                     " requested on the command line. Forcing timeout to be {1}"
-                    " seconds"
+                    " seconds."
                 ).format(lit_config.maxIndividualTestTime, opts.maxIndividualTestTime)
             )
             lit_config.maxIndividualTestTime = opts.maxIndividualTestTime



More information about the llvm-commits mailing list