Skip to content

Commit ea6326d

Browse files
committed
Add even more fuzzing time
1 parent b67d7bc commit ea6326d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/wide_integer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- '**'
1313
pull_request:
1414
schedule:
15-
- cron: '0 2 * * *' # run at 2 AM UTC
15+
- cron: '5 2 * * *' # run at 2:05 AM UTC
1616
jobs:
1717
cmake-linux:
1818
runs-on: ubuntu-latest

.github/workflows/wide_integer_fuzzing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- '**'
1313
pull_request:
1414
schedule:
15-
- cron: '15 2 * * *' # run at 2:15 AM UTC
15+
- cron: '0 2 * * *' # run at 2:00 AM UTC
1616
jobs:
1717
clang-fuzzing:
1818
runs-on: ubuntu-latest

run_fuzzing.sh

+8-8
Original file line numberDiff line numberDiff line change
@@ -22,28 +22,28 @@ exit_compile=$?
2222

2323

2424
# Start each executable in the background and save their process IDs
25-
./test_fuzzing_add -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
25+
./test_fuzzing_add -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
2626
pid_add=$!
2727

28-
./test_fuzzing_sub -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
28+
./test_fuzzing_sub -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
2929
pid_sub=$!
3030

31-
./test_fuzzing_mul -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
31+
./test_fuzzing_mul -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
3232
pid_mul=$!
3333

34-
./test_fuzzing_div -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
34+
./test_fuzzing_div -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
3535
pid_div=$!
3636

37-
./test_fuzzing_sdiv -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
37+
./test_fuzzing_sdiv -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
3838
pid_sdiv=$!
3939

40-
./test_fuzzing_sqrt -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
40+
./test_fuzzing_sqrt -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
4141
pid_sqrt=$!
4242

43-
./test_fuzzing_powm -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
43+
./test_fuzzing_powm -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
4444
pid_powm=$!
4545

46-
./test_fuzzing_prime -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
46+
./test_fuzzing_prime -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
4747
pid_prime=$!
4848

4949

0 commit comments

Comments
 (0)