blob: 74c71bde73a9f4a78adc8676701b45b8912418a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
# Definition specific tests
check "info" dotnet --info
check "list-sdks" dotnet --list-sdks
check "version" dotnet --version
# Make sure the symlink works
check "current link info" /usr/local/dotnet/current/dotnet --info
check "current link sdk directory" ls -l /usr/local/dotnet/current/sdk
# TODO: Installer script defaults to .NET 6 as that's LTS. Update this test or remove it.
# echo "Validating expected version present..."
# check "some major version of dotnet 7 is installed" bash -c "dotnet --version | grep '7\.[0-9]*\.[0-9]*'"
# Report result
reportResults
|