Skip to content

Commit

Permalink
increase trial limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Kyle committed Apr 17, 2024
1 parent 17d06dd commit 34c7c6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ clean:

define test_poc =
echo $(poc)
for i in $$(seq 0 4);\
for i in $$(seq 0 20);\
do\
LIBC_FATAL_STDERR_=1 $(poc) 1>/dev/null 2>&1 0>&1;\
if [ "$$?" = "0" ]; then break; fi;\
if [ "$$i" = "4" ]; then exit 1; fi;\
if [ "$$i" = "20" ]; then exit 1; fi;\
done
echo "success"
endef
Expand Down

0 comments on commit 34c7c6f

Please sign in to comment.