forked from andikleen/pmu-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall-tester
More file actions
executable file
·34 lines (28 loc) · 807 Bytes
/
all-tester
File metadata and controls
executable file
·34 lines (28 loc) · 807 Bytes
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
#!/bin/bash
# one stop shop to test all pmu-tools test suites
# to run it faster use parallel-tester
# each line must be self contained!
set -e
set -x
# test ocperf
./tester
WRAP=python3 ./tester
# test toplev
./tl-tester
WRAP=python3 ./tl-tester
MATCH="icl" DCPU="icl --no-group" NOGROUP=1 NORES=1 LOAD=./workloads/BC1s ./tl-tester
MATCH=snb DCPU=snb ./tl-tester
MATCH=hsw DCPU=hsw ./tl-tester
MATCH=slm DCPU=slm NORES=1 NOGROUP=1 LOAD=./workloads/BC1s ./tl-tester
MATCH=knl DCPU=knl NORES=1 NOGROUP=1 LOAD=./workloads/BC1s ./tl-tester
# test other tools
./other-tester
WRAP=python3 ./other-tester
# test jevents
cd jevents ; make && ./tester ; cd ..
# test perf.data parser
# this requires construct and pandas and some other libraries
# XXX check for missing dependencies
#cd parser
#tester
#cd ..