diff --git a/scripts/test-examples.ps1 b/scripts/test-examples.ps1 index 7a1800d..3fe75f9 100644 --- a/scripts/test-examples.ps1 +++ b/scripts/test-examples.ps1 @@ -1,6 +1,6 @@ -# Run one example per language to verify the build+run pipeline. -# Languages: C, Rust, Go, .NET, PowerShell, Shell, Python -# +# Run representative finite examples to verify the build+run pipeline. +# Covers C, Rust, Go, .NET, PowerShell, Shell, Python, Node.js, hostfs, and Wasm host tools. + # Usage: .\scripts\test-examples.ps1 $ErrorActionPreference = "Continue" @@ -72,9 +72,15 @@ Run-Example "helloworld-c" Run-Example "rust" Run-Example "go" Run-Example "dotnet" +Run-Example "dotnet-nativeaot" Run-Example "powershell" Run-Example "shell" Run-Example "python" +Run-Example "python-tools" +Run-Example "nodejs" +Run-Example "hostfs-posix-c" +Run-Example "hostfs-posix-py" +Run-Example "python-agent" Write-Host "" if ($Failures -gt 0) { diff --git a/scripts/test-examples.sh b/scripts/test-examples.sh index abd7e1f..941fb1d 100755 --- a/scripts/test-examples.sh +++ b/scripts/test-examples.sh @@ -1,7 +1,7 @@ #!/bin/bash -# Run one example per language to verify the build+run pipeline. -# Languages: C, Rust, Go, .NET, PowerShell, Shell, Python -# +# Run representative finite examples to verify the build+run pipeline. +# Covers C, Rust, Go, .NET, PowerShell, Shell, Python, Node.js, hostfs, and Wasm host tools. + # Usage: ./scripts/test-examples.sh set -uo pipefail @@ -89,9 +89,15 @@ run_example "helloworld-c" run_example "rust" run_example "go" run_example "dotnet" +run_example "dotnet-nativeaot" run_example "powershell" run_example "shell" run_example "python" +run_example "python-tools" +run_example "nodejs" +run_example "hostfs-posix-c" +run_example "hostfs-posix-py" +run_example "python-agent" echo "" if [ "$FAILURES" -gt 0 ]; then