File: README.md

package info (click to toggle)
tinygltf 2.7.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 2,288 kB
  • sloc: cpp: 7,515; sh: 29; makefile: 22
file content (46 lines) | stat: -rw-r--r-- 799 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Fuzzing test

Do fuzzing test for TinyGLTF API.

## Supported API

* [x] LoadASCIIFromMemory
* [ ] LoadBinaryFromMemory

## Requirements

* meson
* clang with fuzzer support(`-fsanitize=fuzzer`. at least clang 8.0 should work)

## Setup

### Ubuntu 18.04

```
$ sudo apt install clang++-8
$ sudo apt install libfuzzer-8-dev
```

Optionally, if you didn't set `update-alternatives` you can set `clang++` to point to `clang++8`

```
$ sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-8 10
$ sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-8 10
```

## How to compile

```
$ CXX=clang++ CC=clang meson build
$ cd build
$ ninja
```

## How to run

Increase memory limit. e.g. `-rss_limit_mb=50000`

```
$ ./fuzz_gltf -rss_limit_mb=20000 -jobs 4
```