Skip to content

Commit

Permalink
Run tests in a directory that contains a space (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli authored Feb 1, 2023
1 parent 2001111 commit 8650012
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,13 @@ jobs:
with:
name: windows-zip
- run: unzip jou.zip
- run: mv jou/* repo/tests repo/runtests.sh .
# Add a space in the folder name to trigger bugs like #165
- run: mkdir "test dir"
- run: mv jou/* repo/tests repo/runtests.sh "test dir"
shell: bash
- run: .\jou.exe --verbose examples/hello.jou
- run: ./runtests.sh
- run: cd "test dir" && ./jou.exe --verbose examples/hello.jou
shell: bash
- run: cd "test dir" && ./runtests.sh
shell: bash

fuzzer:
Expand Down

0 comments on commit 8650012

Please sign in to comment.