diff --git a/test.ps1 b/test.ps1 index ccd6aa0..7672864 100644 --- a/test.ps1 +++ b/test.ps1 @@ -1,5 +1,5 @@ Invoke-Command -Script { cargo run } -ErrorAction SilentlyContinue -IF( $LASTEXITCODE -EQ 5 ) { +IF( $LASTEXITCODE -EQ 3 ) { Write-Output "eduOS-rs runs succesfully within Qemu" Exit 0 } else { diff --git a/test.sh b/test.sh index 6377065..ecd350c 100755 --- a/test.sh +++ b/test.sh @@ -1,6 +1,6 @@ #!/bin/bash cargo run -if [ $? -eq 5 ]; then +if [ $? -eq 3 ]; then echo "eduOS-rs runs succesfully within Qemu" exit 0 else