Coverage Report

Created: 2024-02-13 07:03

/src/fuzz/init_ruby_load_paths.h
Line
Count
Source (jump to first uncovered line)
1
#include <stdio.h>
2
3
0
static int init_ruby_load_paths(char *buf, size_t bufsize, const char *outpath) {
4
0
  return snprintf(buf, bufsize,
5
0
    "%s/lib/ruby/site_ruby/3.4.0+0:"
6
0
    "%s/lib/ruby/site_ruby/3.4.0+0/x86_64-linux:"
7
0
    "%s/lib/ruby/site_ruby:"
8
0
    "%s/lib/ruby/vendor_ruby/3.4.0+0:"
9
0
    "%s/lib/ruby/vendor_ruby/3.4.0+0/x86_64-linux:"
10
0
    "%s/lib/ruby/vendor_ruby:"
11
0
    "%s/lib/ruby/3.4.0+0:"
12
0
    "%s/lib/ruby/3.4.0+0/x86_64-linux",
13
0
    outpath,
14
0
    outpath,
15
0
    outpath,
16
0
    outpath,
17
0
    outpath,
18
0
    outpath,
19
0
    outpath,
20
0
    outpath
21
0
  );
22
0
}