features/test/dotnet/run_dotnet_7.sh

13 lines
202 B
Bash
Raw Normal View History

2023-03-01 11:29:45 +03:00
#!/bin/bash
set -e
source dev-container-features-test-lib
2023-03-01 22:19:02 +03:00
check "non-root user" test "$(id -u)" -ne 0
2023-03-01 11:29:45 +03:00
pushd example_project
check "dotnet run" bash -c "dotnet run | grep 'Inception'"
2023-03-01 20:20:17 +03:00
reportResults