run-qemu-robot-test: do not run robot tests as root

The root option for the docker containers is not required for this test
process to execute correctly.

Tested:
- Verified script ran successfully and log files were all now owned by
  my userid and I could delete them

Change-Id: I790fcacf7d3552597e4e7a2bfd6d33d9c2ea9b6f
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
diff --git a/run-qemu-robot-test.sh b/run-qemu-robot-test.sh
index 0e90c5f..870ae87 100755
--- a/run-qemu-robot-test.sh
+++ b/run-qemu-robot-test.sh
@@ -107,7 +107,6 @@
   # root in docker required to open up the https/ssh ports
   obmc_qemu_docker=$(docker run --detach \
                                 --rm \
-                                --user root \
                                 --env HOME="${OBMC_BUILD_DIR}" \
                                 --env QEMU_RUN_TIMER="${QEMU_RUN_TIMER}" \
                                 --env QEMU_ARCH="${QEMU_ARCH}" \
@@ -166,7 +165,6 @@
   # Run the Docker container to execute the Robot test cases
   # The test results will be put in ${WORKSPACE}
   docker run --rm \
-             --user root \
              --env HOME="${HOME}" \
              --env IP_ADDR="${DOCKER_QEMU_IP_ADDR}" \
              --env SSH_PORT="${DOCKER_SSH_PORT}" \