diff options
author | JP Ungaretti <git@jungaretti.com> | 2023-03-01 04:28:09 +0300 |
---|---|---|
committer | JP Ungaretti <git@jungaretti.com> | 2023-03-01 04:28:09 +0300 |
commit | 1ff0df6f4e4b2af57acd452d5acadd929d3cc910 (patch) | |
tree | d9b0c30df1be86611b6c66d4ddb2ab4e208595f3 /test | |
parent | 26ba3fb9b705060b5803c7689e68fcd1ee628600 (diff) |
Revert test changes
Diffstat (limited to 'test')
-rwxr-xr-x | test/dotnet/test.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/dotnet/test.sh b/test/dotnet/test.sh index 5bbcd74..bb3d430 100755 --- a/test/dotnet/test.sh +++ b/test/dotnet/test.sh @@ -2,17 +2,17 @@ set -e -# Import test library +# Optional: Import test library source dev-container-features-test-lib -# Make sure .NET is installed -check "info" dotnet --info -check "list-sdks" dotnet --list-sdks +# Definition specific tests +check "dotnet" dotnet --info +check "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 +# Verify current symlink exists and works +check "current link dotnet" /usr/local/dotnet/current/dotnet --info +check "current link sdk" ls -l /usr/local/dotnet/current/sdk # Report result reportResults |