Skip to content

Commit

Permalink
Correct neon gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe0606 committed Jan 21, 2025
1 parent 68d8271 commit a3a3645
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/runneontest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ jobs:
cmake ..
python ../processTests.py -p ../Patterns -d ../Parameters -gen .. -e -f ../Output.pickle
make
ninja
./test > result.txt
python ../processResult.py -e -f ../Output.pickle -r result.txt -html > result.html
python ../processTests.py -p ../Patterns -d ../Parameters -gen .. -e -f ../Output_f16.pickle
make
ninja
./test > result_f16.txt
python ../processResult.py -e -f ../Output_f16.pickle -r result_f16.txt -html > result_f16.html
Expand Down
2 changes: 1 addition & 1 deletion Testing/testmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ int testmain(const char *patterns)

// There is also possibility of using "FPGA" io
#if defined(EMBEDDED)
Client::FPGA io((const char*)testDesc,(const char*)patterns);
Client::FPGA io((const unsigned char*)testDesc,(const char*)patterns);
#else
Client::Semihosting io("../TestDesc.txt","../Patterns","../Output","../Parameters");
#endif
Expand Down

0 comments on commit a3a3645

Please sign in to comment.