diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-03-20 15:35:07 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-03-20 15:35:07 +0000 |
commit | 0b95ac376c72458b3c26da7d1f0a694ad7e823b0 (patch) | |
tree | 7ab13bbf6c4be2c51e5119817d430dba06b04ddf /test/check_dmidecode.pl | |
parent | afb24bb1d95b563399a820868f3b46b5126bdf5b (diff) | |
download | ldetect-lst-0b95ac376c72458b3c26da7d1f0a694ad7e823b0.tar ldetect-lst-0b95ac376c72458b3c26da7d1f0a694ad7e823b0.tar.gz ldetect-lst-0b95ac376c72458b3c26da7d1f0a694ad7e823b0.tar.bz2 ldetect-lst-0b95ac376c72458b3c26da7d1f0a694ad7e823b0.tar.xz ldetect-lst-0b95ac376c72458b3c26da7d1f0a694ad7e823b0.zip |
the trick was not working anymore. fixed in ldetect 0.7.24
Diffstat (limited to 'test/check_dmidecode.pl')
-rwxr-xr-x | test/check_dmidecode.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/check_dmidecode.pl b/test/check_dmidecode.pl index d81cfbc9..e00a5445 100755 --- a/test/check_dmidecode.pl +++ b/test/check_dmidecode.pl @@ -8,7 +8,7 @@ foreach my $file (glob("dmidecode.*")) { my %got = map { s/\s*: .*//; /(\S+):(.*)/ ? ($1 => $2) : (); - } `lspcidrake -p /dev/null -u /dev/null --dmidecode $file`; + } `lspcidrake --dmidecode $file`; my @missing = difference2([ keys %wanted ], [ keys %got ]); if (@missing) { |