Commit a39d0651 authored by Yongun Seong's avatar Yongun Seong Committed by github-actions[bot]
Browse files

nixosTests.gvisor: remove flaky test

(cherry picked from commit ee59d35b)
parent 10878138
Loading
Loading
Loading
Loading
+15 −21
Original line number Diff line number Diff line
@@ -31,13 +31,7 @@ import ./make-test-python.nix ({ pkgs, ...} : {
    gvisor.wait_for_unit("network.target")
    gvisor.wait_for_unit("sockets.target")

    # Start by verifying that gvisor itself works
    output = gvisor.succeed(
        "${pkgs.gvisor}/bin/runsc -alsologtostderr do ${pkgs.coreutils}/bin/echo hello world"
    )
    assert output.strip() == "hello world"

    # Also test the Docker runtime
    # Test the Docker runtime
    gvisor.succeed("tar cv --files-from /dev/null | docker import - scratchimg")
    gvisor.succeed(
        "docker run -d --name=sleeping --runtime=runsc -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10"