2010-06-14 22:18:09 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2014-02-15 07:45:39 +01:00
|
|
|
* Copyright (C) 2007-2014 Daniel Marjamäki and Cppcheck team.
|
2010-06-14 22:18:09 +02:00
|
|
|
*
|
|
|
|
* 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "cppcheck.h"
|
|
|
|
#include "testsuite.h"
|
2010-06-17 23:42:01 +02:00
|
|
|
#include "threadexecutor.h"
|
2011-04-27 22:27:02 +02:00
|
|
|
#include "cppcheckexecutor.h"
|
2010-06-14 22:18:09 +02:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
extern std::ostringstream errout;
|
|
|
|
extern std::ostringstream output;
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
class TestThreadExecutor : public TestFixture {
|
2010-06-14 22:18:09 +02:00
|
|
|
public:
|
2013-08-07 16:27:37 +02:00
|
|
|
TestThreadExecutor() : TestFixture("TestThreadExecutor") {
|
|
|
|
}
|
2010-06-14 22:18:09 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2010-06-17 23:42:01 +02:00
|
|
|
/**
|
|
|
|
* Execute check using n jobs for y files which are have
|
|
|
|
* identical data, given within data.
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
void check(unsigned int jobs, int files, int result, const std::string &data) {
|
2010-06-14 22:18:09 +02:00
|
|
|
errout.str("");
|
|
|
|
output.str("");
|
2011-10-13 20:53:06 +02:00
|
|
|
if (!ThreadExecutor::isEnabled()) {
|
2010-06-17 23:42:01 +02:00
|
|
|
// Skip this check on systems which don't use this feature
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-07-08 23:39:46 +02:00
|
|
|
std::map<std::string, std::size_t> filemap;
|
2011-10-13 20:53:06 +02:00
|
|
|
for (int i = 1; i <= files; ++i) {
|
2010-06-17 23:42:01 +02:00
|
|
|
std::ostringstream oss;
|
|
|
|
oss << "file_" << i << ".cpp";
|
2012-02-19 17:22:59 +01:00
|
|
|
filemap[oss.str()] = 1;
|
2010-06-17 23:42:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Settings settings;
|
|
|
|
settings._jobs = jobs;
|
2012-02-19 17:22:59 +01:00
|
|
|
ThreadExecutor executor(filemap, settings, *this);
|
2012-07-08 23:39:46 +02:00
|
|
|
for (std::map<std::string, std::size_t>::const_iterator i = filemap.begin(); i != filemap.end(); ++i)
|
2012-02-19 17:22:59 +01:00
|
|
|
executor.addFileContent(i->first, data);
|
2010-06-17 23:42:01 +02:00
|
|
|
|
2010-07-07 13:59:42 +02:00
|
|
|
ASSERT_EQUALS(result, executor.check());
|
2010-06-14 22:18:09 +02:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void run() {
|
2010-07-07 14:42:39 +02:00
|
|
|
TEST_CASE(deadlock_with_many_errors);
|
2014-04-13 11:51:29 +02:00
|
|
|
TEST_CASE(many_threads);
|
2010-07-07 13:59:42 +02:00
|
|
|
TEST_CASE(no_errors_more_files);
|
|
|
|
TEST_CASE(no_errors_less_files);
|
|
|
|
TEST_CASE(no_errors_equal_amount_files);
|
|
|
|
TEST_CASE(one_error_less_files);
|
|
|
|
TEST_CASE(one_error_several_files);
|
2010-06-14 22:18:09 +02:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void deadlock_with_many_errors() {
|
2010-06-17 23:42:01 +02:00
|
|
|
std::ostringstream oss;
|
|
|
|
oss << "int main()\n"
|
|
|
|
<< "{\n";
|
2010-07-31 14:44:08 +02:00
|
|
|
for (int i = 0; i < 500; i++)
|
2011-11-30 19:43:02 +01:00
|
|
|
oss << " {char *a = malloc(10);}\n";
|
2010-06-17 23:42:01 +02:00
|
|
|
|
2013-08-07 17:55:31 +02:00
|
|
|
oss << " return 0;\n"
|
|
|
|
<< "}\n";
|
2010-07-31 14:44:08 +02:00
|
|
|
check(2, 3, 3, oss.str());
|
2010-07-07 13:59:42 +02:00
|
|
|
}
|
|
|
|
|
2014-04-13 11:51:29 +02:00
|
|
|
void many_threads() {
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << "int main()\n"
|
|
|
|
<< "{\n";
|
|
|
|
oss << " char *a = malloc(10);\n";
|
|
|
|
oss << " return 0;\n"
|
|
|
|
<< "}";
|
|
|
|
check(20, 100, 100, oss.str());
|
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void no_errors_more_files() {
|
2010-07-07 13:59:42 +02:00
|
|
|
std::ostringstream oss;
|
|
|
|
oss << "int main()\n"
|
2013-08-07 17:55:31 +02:00
|
|
|
<< "{\n"
|
|
|
|
<< " return 0;\n"
|
|
|
|
<< "}\n";
|
2010-07-31 14:44:08 +02:00
|
|
|
check(2, 3, 0, oss.str());
|
2010-07-07 13:59:42 +02:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void no_errors_less_files() {
|
2010-07-07 13:59:42 +02:00
|
|
|
std::ostringstream oss;
|
|
|
|
oss << "int main()\n"
|
2013-08-07 17:55:31 +02:00
|
|
|
<< "{\n"
|
|
|
|
<< " return 0;\n"
|
|
|
|
<< "}\n";
|
2010-07-31 14:44:08 +02:00
|
|
|
check(2, 1, 0, oss.str());
|
2010-07-07 13:59:42 +02:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void no_errors_equal_amount_files() {
|
2010-07-07 13:59:42 +02:00
|
|
|
std::ostringstream oss;
|
|
|
|
oss << "int main()\n"
|
2013-08-07 17:55:31 +02:00
|
|
|
<< "{\n"
|
|
|
|
<< " return 0;\n"
|
|
|
|
<< "}\n";
|
2010-07-31 14:44:08 +02:00
|
|
|
check(2, 2, 0, oss.str());
|
2010-07-07 13:59:42 +02:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void one_error_less_files() {
|
2010-07-07 13:59:42 +02:00
|
|
|
std::ostringstream oss;
|
|
|
|
oss << "int main()\n"
|
2013-08-07 17:55:31 +02:00
|
|
|
<< "{\n"
|
|
|
|
<< " {char *a = malloc(10);}\n"
|
|
|
|
<< " return 0;\n"
|
|
|
|
<< "}\n";
|
2010-07-31 14:44:08 +02:00
|
|
|
check(2, 1, 1, oss.str());
|
2010-07-07 13:59:42 +02:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void one_error_several_files() {
|
2010-07-07 13:59:42 +02:00
|
|
|
std::ostringstream oss;
|
|
|
|
oss << "int main()\n"
|
2013-08-07 17:55:31 +02:00
|
|
|
<< "{\n"
|
|
|
|
<< " {char *a = malloc(10);}\n"
|
|
|
|
<< " return 0;\n"
|
|
|
|
<< "}\n";
|
2010-07-31 14:44:08 +02:00
|
|
|
check(2, 20, 20, oss.str());
|
2010-06-14 22:18:09 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
REGISTER_TEST(TestThreadExecutor)
|