Skip to content

Commit

Permalink
Fail test
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin Ward committed Jan 26, 2024
1 parent 95bb4e7 commit 6db9fb5
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
28 changes: 22 additions & 6 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,40 @@ jobs:
msbuild /p:Configuration=Release /p:Platform=x64
cd Tests
Get-ChildItem -Path *.vcxproj | ForEach-Object {& msbuild /p:Configuration=Release /p:Platform=x86 $_.FullName}
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
Get-ChildItem -Path *.vcxproj | ForEach-Object {& msbuild /p:Configuration=Release /p:Platform=x64 $_.FullName}
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
- name: Build Debug
run: |
msbuild /p:Configuration=Debug /p:Platform=x86
msbuild /p:Configuration=Debug /p:Platform=x64
cd Tests
Get-ChildItem -Path *.vcxproj | ForEach-Object {& msbuild /p:Configuration=Debug /p:Platform=x86 $_.FullName}
Get-ChildItem -Path *.vcxproj | ForEach-Object {& msbuild /p:Configuration=Debug /p:Platform=x64 $_.FullName}
$x86Build = Get-ChildItem -Path *.vcxproj | ForEach-Object {& msbuild /p:Configuration=Debug /p:Platform=x86 $_.FullName}
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
$x64Build = Get-ChildItem -Path *.vcxproj | ForEach-Object {& msbuild /p:Configuration=Debug /p:Platform=x64 $_.FullName}
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
- name: Display Build Results
run: |
Write-Host "x86 Build Result: $($x86Build.ExitCode)"
Write-Host "x64 Build Result: $($x64Build.ExitCode)"
- name: Finalize Build
run: |
if ($x86Build.ExitCode -ne 0 -or $x64Build.ExitCode -ne 0) {
Write-Host "Build failed."
exit 1
} else {
Write-Host "Build succeeded."
}
- name: Test
run: |
cd Tests
Get-ChildItem -Path Win32\Release\*.exe | ForEach-Object {& $_.FullName}
Get-ChildItem -Path x64\Release\*.exe | ForEach-Object {& $_.FullName}
Get-ChildItem -Path Win32\Release\*.exe | ForEach-Object {& $_.FullName -ErrorAction Stop}
Get-ChildItem -Path x64\Release\*.exe | ForEach-Object {& $_.FullName -ErrorAction Stop}
- name: Test Debug
run: |
cd Tests
Get-ChildItem -Path Win32\Debug\*.exe | ForEach-Object {& $_.FullName}
Get-ChildItem -Path x64\Debug\*.exe | ForEach-Object {& $_.FullName}
Get-ChildItem -Path Win32\Debug\*.exe | ForEach-Object {& $_.FullName -ErrorAction Stop}
Get-ChildItem -Path x64\Debug\*.exe | ForEach-Object {& $_.FullName -ErrorAction Stop}
- name: Archive Libraries
uses: actions/upload-artifact@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions Tests/T_Dir.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

fail!
#include <StdFuncs.h>
#include <Dir.h>
#include <File.h>
Expand Down Expand Up @@ -137,7 +137,7 @@ int main()
test((Result == KErrNone) || (Result == KErrNotFound));

Result = File.create("TimeFile.txt", EFileWrite);
test(Result == KErrNone);
test(Result == KErrFound);
File.close();

Result = Utils::GetFileInfo("T_Dir.cpp", &Entry);
Expand Down

0 comments on commit 6db9fb5

Please sign in to comment.