Skip to content

Commit

Permalink
fix: dafny testing reporting (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
texastony authored and josecorella committed Oct 11, 2023
1 parent f118bd4 commit b298b9a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
9 changes: 7 additions & 2 deletions AwsCryptographicMaterialProviders/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,14 @@ compile_test_net:
-library:src/Index.dfy

test_net:
dotnet run \
@exit $(shell dotnet run \
--project runtimes/net/tests/ \
--framework net6.0
--framework net6.0 | tee /dev/stderr | grep -c "FAILED")

test_net_mac_intel:
@exit $(shell DYLD_LIBRARY_PATH="/usr/local/opt/openssl@1.1/lib" dotnet run \
--project runtimes/net/tests/ \
--framework net6.0 | tee /dev/stderr | grep -c "FAILED")

setup_net:
dotnet restore runtimes/net/
9 changes: 7 additions & 2 deletions AwsCryptographyPrimitives/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,14 @@ compile_test_net:
-library:src/Index.dfy

test_net:
dotnet run \
@exit $(shell dotnet run \
--project runtimes/net/tests/ \
--framework net6.0
--framework net6.0 | tee /dev/stderr | grep -c "FAILED")

test_net_mac_intel:
@exit $(shell DYLD_LIBRARY_PATH="/usr/local/opt/openssl@1.1/lib" dotnet run \
--project runtimes/net/tests/ \
--framework net6.0 | tee /dev/stderr | grep -c "FAILED")

setup_net:
dotnet restore runtimes/net/
9 changes: 7 additions & 2 deletions ComAmazonawsKms/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,14 @@ compile_test_net:
-library:src/Index.dfy

test_net:
dotnet run \
@exit $(shell dotnet run \
--project runtimes/net/tests/ \
--framework net6.0
--framework net6.0 | tee /dev/stderr | grep -c "FAILED")

test_net_mac_intel:
@exit $(shell DYLD_LIBRARY_PATH="/usr/local/opt/openssl@1.1/lib" dotnet run \
--project runtimes/net/tests/ \
--framework net6.0 | tee /dev/stderr | grep -c "FAILED")

setup_net:
dotnet restore runtimes/net/

0 comments on commit b298b9a

Please sign in to comment.