Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,12 @@ WARMUP_FILTER = ImageWarmup

CONCURRENT_TEST_SUITES ?= \
TestCLIExportCommand/ \
TestCLIHelp \
TestCLIMachineCommand/ \
TestCLIRmRaceCondition/ \
TestCLIStop/
TestCLIStatus \
TestCLIStop/ \
TestCLIVersion/
CONCURRENT_FILTER = $(subst $(space),|,$(strip $(CONCURRENT_TEST_SUITES)))

GLOBAL_TEST_SUITES ?= \
Expand Down Expand Up @@ -271,9 +274,6 @@ coverage-integration-new: all
$(RUN_INTEGRATION)

INTEGRATION_TEST_SUITES ?= \
TestCLIHelp \
TestCLIStatus \
TestCLIVersion \
TestCLINetwork \
TestCLIRunLifecycle \
TestCLIRunCapabilities \
Expand Down
166 changes: 0 additions & 166 deletions Tests/CLITests/Subcommands/System/TestCLIStatus.swift

This file was deleted.

113 changes: 0 additions & 113 deletions Tests/CLITests/Subcommands/System/TestCLIVersion.swift

This file was deleted.

40 changes: 0 additions & 40 deletions Tests/CLITests/TestCLIHelp.swift

This file was deleted.

42 changes: 42 additions & 0 deletions Tests/IntegrationTests/System/TestCLIHelp.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
//===----------------------------------------------------------------------===//
// Copyright © 2026 Apple Inc. and the container project authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//===----------------------------------------------------------------------===//

import Testing

@Suite
struct TestCLIHelp {
@Test func testHelp() async throws {
try await ContainerFixture.with { f in
let result = try f.run(["help"])
#expect(result.status == 0, "help should succeed, stderr: \(result.error)")
#expect(
result.output.contains("OVERVIEW: A container platform for macOS"),
"output should contain overview section"
)
}
}

@Test func testDebugHelp() async throws {
try await ContainerFixture.with { f in
let result = try f.run(["--debug", "help"])
#expect(result.status == 0, "help should succeed, stderr: \(result.error)")
#expect(
result.output.contains("OVERVIEW: A container platform for macOS"),
"output should contain overview section"
)
}
}
}
Loading