blob: 785de39208796bdda12faccd6413fdd1d03ef7e3 (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/***************************************************************************
* Copyright (C) 2007 Nicolas Hadacek <hadacek@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#include "device_test.h"
#include "devices/base/device_group.h"
#include "devices/list/device_list.h"
void DeviceTest::checkArguments()
{
if ( _args->count()==1 ) {
_device = TQString(_args->arg(0)).upper();
if ( !Device::lister().isSupported(_device) ) tqFatal("Specified device \"%s\" not supported.", _device.latin1());
printf("Testing only %s\n", _device.latin1());
}
}
bool DeviceTest::execute()
{
Device::Lister::ConstIterator it;
for (it=Device::lister().begin(); it!=Device::lister().end(); ++it) {
Group::Base::ConstIterator git;
for (git=it.data()->begin(); git!=it.data()->end(); ++git) {
const Device::Data &data = *git.data().data;
if ( !_device.isEmpty() && data.name()!=_device ) continue;
_message = data.name();
if ( skip(data) ) {
skipped();
printf("S");
} else {
if ( init(data) ) {
printf("*");
execute(data);
} else printf("S");
cleanup(data);
}
fflush(stdout);
}
}
return true;
}
Piklab::OptionList DeviceTest::optionList() const
{
Piklab::OptionList optionList;
const TDECmdLineOptions OPTION = { "+[device]", "Only check the specified device", 0 };
optionList.append(OPTION);
return optionList;
}
|