mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-02-20 11:58:55 +00:00
sysfile_getter/cpufreq: fix taball name
Commit 724f6e590e8ba3c2251e864e4216cf258ae7a861 changed sysfile_getter behavior to first tar up copied files and then gzip them. Tarball name needs to be updated to not include '.gz' extension.
This commit is contained in:
parent
f165969d61
commit
d581f1f329
@ -57,7 +57,7 @@ class SysfsExtractor(Instrument):
|
||||
|
||||
mount_command = 'mount -t tmpfs -o size={} tmpfs {}'
|
||||
extract_timeout = 30
|
||||
tarname = 'sysfs.tar.gz'
|
||||
tarname = 'sysfs.tar'
|
||||
DEVICE_PATH = 0
|
||||
BEFORE_PATH = 1
|
||||
AFTER_PATH = 2
|
||||
@ -298,7 +298,7 @@ class DynamicFrequencyInstrument(SysfsExtractor):
|
||||
|
||||
"""
|
||||
|
||||
tarname = 'cpufreq.tar.gz'
|
||||
tarname = 'cpufreq.tar'
|
||||
|
||||
parameters = [
|
||||
Parameter('paths', mandatory=False, override=True),
|
||||
|
Loading…
x
Reference in New Issue
Block a user