Task #38592 - added.err

back to task #38592
download
Error: SHELLCHECK_WARNING (CWE-156):
/usr/share/buildah/test/system/run.bats:1002:11: warning[SC2046]: Quote this to prevent word splitting.
# 1000|   
# 1001|   @test "root fs only mounted once" {
# 1002|->   if test `uname` != Linux ; then
# 1003|       skip "not meaningful except on Linux"
# 1004|     fi

Error: SHELLCHECK_WARNING (CWE-156):
/usr/share/buildah/test/system/run.bats:1018:10: warning[SC2046]: Quote this to prevent word splitting.
# 1016|     echo "# mountinfo count:"
# 1017|     cat ${TEST_SCRATCH_DIR}/mountinfo3
# 1018|->   assert $(cat ${TEST_SCRATCH_DIR}/mountinfo3) -eq 1
# 1019|   }