blob: 5f40af7f87d16a6c263f8d14dc29f4adde6389c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# Report testing conditions
model=$(cat /sys/firmware/devicetree/base/model)
echo "Test Conditions:"
echo " Platform: " "$model"
echo " Kernel release: " $(uname -r)
echo " convert: " $(which convert)
echo " compare: " $(which compare)
echo " killall: " $(which killall)
echo " raw2rgbpnm: " $(which raw2rgbpnm)
echo " stress: " $(which stress)
echo " yavta: " $(which yavta)
|