summaryrefslogtreecommitdiff
path: root/test/unit/test_fuzz_empty_data.py
blob: 3206fcead0a577a46c29c10512a1c5264d890d56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import os
import tempfile
from scripts.test import shared
from . import utils


class EmptyDataFuzzTest(utils.BinaryenTestCase):
    def test_empty_data(self):
        try:
            temp = tempfile.NamedTemporaryFile(delete=False).name
            shared.run_process(shared.WASM_OPT + ['-ttf', temp],
                               capture_output=True)
        finally:
            os.unlink(temp)