From 46ae40077325db566f1fcdd953b00aa54ceac2fb Mon Sep 17 00:00:00 2001 From: Aaron Fiore Date: Fri, 13 Feb 2026 16:08:57 -0800 Subject: [PATCH] container: root: test: unit: utility: add exit function no-op case --- container/src/root/test/unit/utility.hh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/container/src/root/test/unit/utility.hh b/container/src/root/test/unit/utility.hh index e74db59..848f75b 100644 --- a/container/src/root/test/unit/utility.hh +++ b/container/src/root/test/unit/utility.hh @@ -341,6 +341,12 @@ TEST_F(CommonFree, exec) ASSERT_EQ(common::exec("pwd"), 0); } +TEST_F(CommonFree, exit) +{ + // NOTE: no-op (or else entire framework exits). + // Execution is covered in functional tests (gitea workflow). +} + TEST_F(CommonFree, make_timestamp) { ASSERT_EQ(common::make_timestamp().size(), 20);