aboutsummaryrefslogtreecommitdiff
path: root/test/dotnet/install_dotnet_runtime.sh
blob: 73bbe9a3708f0dcc30340251ef25dd3870d229d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

set -e

source dev-container-features-test-lib

# Some runtime installed
check "runtime" bash -c 'test "$(dotnet --list-runtimes | wc -l)" -gt 0'

# No sdk installed
check "no sdk" bash -c 'test "$(dotnet --list-sdks | wc -l)" -eq 0'

reportResults