Skip to content

Commit

Permalink
another test - 2
Browse files Browse the repository at this point in the history
  • Loading branch information
cenit committed Sep 26, 2023
1 parent f203e60 commit 3a41cf0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -651,8 +651,10 @@ jobs:
run: |
ls "${{ github.workspace }}\build_release"
ls "${{ github.workspace }}"
- name: Test interactive
run: ${{ github.workspace }}\build_release\darknet.exe detect ${{ github.workspace }}\cfg\yolov4-tiny.cfg ${{ github.workspace }}\yolov4-tiny.weights
- name: Test kmeansiou
run: ${{ github.workspace }}\kmeansiou.exe
- name: Test darknet
run: ${{ github.workspace }}\darknet.exe
- name: Test on data/dog.jpg
run: ${{ github.workspace }}\build_release\darknet.exe detect ${{ github.workspace }}\cfg\yolov4-tiny.cfg ${{ github.workspace }}\yolov4-tiny.weights ${{ github.workspace }}\data\dog.jpg

Expand Down
1 change: 1 addition & 0 deletions src/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ void log_backtrace()
void error(const char * const msg, const char * const filename, const char * const funcname, const int line)
{
printf("Darknet error location: %s, %s(), line #%d\n", filename, funcname, line);
fflush(stdout);
perror(msg);
log_backtrace();
exit(EXIT_FAILURE);
Expand Down

0 comments on commit 3a41cf0

Please sign in to comment.