summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-03-20 15:35:07 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-03-20 15:35:07 +0000
commit0b95ac376c72458b3c26da7d1f0a694ad7e823b0 (patch)
tree7ab13bbf6c4be2c51e5119817d430dba06b04ddf
parentafb24bb1d95b563399a820868f3b46b5126bdf5b (diff)
downloadldetect-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
-rwxr-xr-xtest/check_dmidecode.pl2
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) {