github-ci: use current directory for unit test logging

/tmp appears to exist when you make it, but doesn't appear to actually
exist after msys translation, so just use "."

(cherry picked from commit 11cef2980b)
pull/13229/head
Jason Ish 5 months ago committed by Victor Julien
parent 8a32965609
commit cc5511c094

@ -2405,7 +2405,7 @@ jobs:
- name: Run
run: |
./src/suricata --build-info
./src/suricata -u -l /tmp/
./src/suricata -u -l .
# need cwd in path due to npcap dlls (see above)
PATH="$PATH:$(pwd)" python3 ./suricata-verify/run.py -q --debug-failed
- run: make install
@ -2450,7 +2450,7 @@ jobs:
- name: Run
run: |
./src/suricata --build-info
./src/suricata -u -l /tmp/
./src/suricata -u -l .
python3 ./suricata-verify/run.py -q --debug-failed
- run: make install
- run: suricata-update -V

Loading…
Cancel
Save