blob: 4db5c0a828d5f5abedf2c3f5106b28fd30a3f97e (
plain) (
blame)
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
|
#!/usr/bin/env python3
###############################################################################
# Description
###############################################################################
# Use this file to set up and execute a testing pipeline
# Sample pipeline provided
###############################################################################
# Imports
###############################################################################
import trace_reader
import sanitizer
import stdout_printer
###############################################################################
# Trace files
###############################################################################
g6 = [
'./sample_traces/st-g6-0.bin',
'./sample_traces/st-g6-1.bin',
'./sample_traces/st-g6-2.bin',
'./sample_traces/st-g6-3.bin',
]
###############################################################################
# Pipeline
###############################################################################
stream = trace_reader.trace_reader(g6)
stream = sanitizer.sanitizer(stream)
stdout_printer.stdout_printer(stream)
|