mirror of
https://github.com/containers/podman.git
synced 2025-08-14 11:01:35 +08:00

podman-remote has not been tested. A principal part of the problem was #5387 - the YAML I wrote did not have the intended effect, it did not set TEST_REMOTE_CLIENT=true and because of my multiple iterations I did not catch this during testing. Part 1 of this PR is to fix .cirrus.yml to enable remote tests. Part 2 -- what I had first noticed and tried to fix -- is that rootless_test.sh was never running remote because, of course, envariables are not sent via ssh. I reworked integration_test.sh and rootless_test.sh to use a command-line decision instead. Part 3, sigh, is to disable one failing integration test and *all* system tests, because so many of the latter are failing. Addressing those failures needs to be done in subsequent PRs. Issues #6538, #6539, #6540 are filed for some of the problems I isolated. There will be more. Also, minor, fixed some stale references to varlink. Signed-off-by: Ed Santiago <santiago@redhat.com>
31 lines
540 B
Bash
Executable File
31 lines
540 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
source $(dirname $0)/lib.sh
|
|
|
|
if [[ "$UID" == "0" ]]
|
|
then
|
|
echo "Error: Expected to be running as a regular user"
|
|
exit 1
|
|
fi
|
|
|
|
TESTSUITE=${1?Missing TESTSUITE argument (arg1)}
|
|
LOCAL_OR_REMOTE=${2?Missing LOCAL_OR_REMOTE argument (arg2)}
|
|
|
|
# Ensure environment setup correctly
|
|
req_env_var GOSRC ROOTLESS_USER
|
|
|
|
echo "."
|
|
echo "Hello, my name is $USER and I live in $PWD can I be your friend?"
|
|
echo "."
|
|
|
|
show_env_vars
|
|
|
|
set -x
|
|
cd "$GOSRC"
|
|
make
|
|
make varlink_generate
|
|
make test-binaries
|
|
make ${LOCAL_OR_REMOTE}${TESTSUITE}
|